This commit is contained in:
Julian Brammer 2024-06-08 18:41:54 +02:00
parent fdf83cfdaa
commit a856315353

View File

@ -16,12 +16,11 @@ oreList = {
[11] = "minecraft:deepslate_redstone_ore",
[12] = "minecraft:emerald_ore",
[13] = "minecraft:deepslate_emerald_ore",
[14] = "minecraft:quartz_ore",
[15] = "minecraft:deepslate_quartz_ore",
[16] = "minecraft:nether_gold_ore",
[17] = "minecraft:copper_ore",
[18] = "minecraft:deepslate_copper_ore",
[19] = "minecraft:ancient_debris",
[14] = "minecraft:nether_quartz_ore",
[15] = "minecraft:nether_gold_ore",
[16] = "minecraft:copper_ore",
[17] = "minecraft:deepslate_copper_ore",
[18] = "minecraft:ancient_debris",
}
keepList = {
@ -244,6 +243,7 @@ end
local function isOre(blockData)
for i=0, #oreList do
if blockData["name"] == oreList[i] then
inventoryRework()
return true
end
end