From ecdcb963cf5499889efdffb3a1185f2362250b29 Mon Sep 17 00:00:00 2001 From: thunderdog1138 Date: Thu, 16 Jul 2020 20:02:24 +0000 Subject: [PATCH] Update 'mods/dungeon_loot/loot.lua' --- mods/dungeon_loot/loot.lua | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/mods/dungeon_loot/loot.lua b/mods/dungeon_loot/loot.lua index b9b40498..4711c84d 100644 --- a/mods/dungeon_loot/loot.lua +++ b/mods/dungeon_loot/loot.lua @@ -18,7 +18,7 @@ dungeon_loot.registered_loot = { -- farming / consumable {name = "farming:string", chance = 0.5, count = {1, 8}}, {name = "farming:wheat", chance = 0.5, count = {2, 5}}, - {name = "default:joganfruit", chance = 0.4, count = {1, 4}}, + {name = "ethereal:jogan_fruit", chance = 0.4, count = {1, 4}}, {name = "farming:seed_cotton", chance = 0.4, count = {1, 4}, types = {"normal"}}, {name = "default:cactus", chance = 0.4, count = {1, 4}, @@ -28,7 +28,7 @@ dungeon_loot.registered_loot = { {name = "default:coal_lump", chance = 0.9, count = {1, 12}}, {name = "default:gold_ingot", chance = 0.5}, {name = "default:durasteel_ingot", chance = 0.4, count = {1, 6}}, - {name = "default:mese_crystal", chance = 0.1, count = {2, 3}}, + {name = "default:beskar_ingot", chance = 0.1, count = {2, 3}}, -- tools {name = "default:sword_wood", chance = 0.6}, @@ -46,8 +46,7 @@ dungeon_loot.registered_loot = { types = {"ice"}}, {name = "default:dirt", chance = 0.6, count = {2, 16}, y = {-64, 32768}, types = {"normal", "sandstone", "desert"}}, - {name = "default:obsidian", chance = 0.25, count = {1, 3}, y = {-32768, -512}}, - {name = "default:mese", chance = 0.15, y = {-32768, -512}}, + {name = "default:obsidian", chance = 0.25, count = {1, 3}, y = {-32768, -512}} } function dungeon_loot.register(t)