revert b1f92c854e5eedea940f101cfc70468af45534ed

no longer needed now that we use PE+ for the miscitems array
This commit is contained in:
Sainan 2024-06-20 05:59:55 +02:00
parent f7e2f030c5
commit bf0a461f77

View File

@ -109,10 +109,7 @@ window.itemListPromise = new Promise(resolve => {
items.forEach(item => {
if (item.uniqueName in data.badItems) {
item.name += " (Imposter)";
} else if (
item.uniqueName.substr(0, 18) != "/Lotus/Types/Game/" &&
item.uniqueName.substr(0, 18) != "/Lotus/StoreItems/"
) {
} else if (item.uniqueName.substr(0, 18) != "/Lotus/Types/Game/") {
const option = document.createElement("option");
option.setAttribute("data-key", item.uniqueName);
option.value = item.name;