diff --git a/mods/dungeon_loot/init.lua b/mods/dungeon_loot/init.lua index 9562655..17dee0e 100644 --- a/mods/dungeon_loot/init.lua +++ b/mods/dungeon_loot/init.lua @@ -27,11 +27,12 @@ local chest_stuff = { {name="default:diamond", max = 5}, {name="hyruletools:nyan_rupee", max = 5}, {name="twilight:crystal", max = 1}, - {name="hyruletools:steel_boomerang", max = 1}, - {name="hyruletools:hookshot", max = 1}, + {name="clawshot:clawshot", max = 1}, {name="binoculars:binoculars", max = 1}, {name="hyruletools:classic_sword", max = 1}, - {name="hyruletools:hookshot_gold", max = 1}, + {name="clawshot:clawshot_gold", max = 1}, + {name="hyruletools:triforce_shard", max = 1}, + {name="hyruletools:boomerang_steel", max = 1}, {name="default:ice", max = 3} } diff --git a/mods/twilight/init.lua b/mods/twilight/init.lua index e71f749..d1c794c 100644 --- a/mods/twilight/init.lua +++ b/mods/twilight/init.lua @@ -211,7 +211,7 @@ else jump = 1.0, -- multiplier to default value gravity = 1.0, -- multiplier to default value sneak = true, -- whether player can sneak - sneak_glitch = false, -- whether player can use the sneak glitch + sneak_glitch = true, -- whether player can use the sneak glitch }) end--]] @@ -240,4 +240,4 @@ minetest.register_craftitem("twilight:crystal", { return itemstack end end -}) \ No newline at end of file +})