From c4edb6436af44ccf2f061aff58a96f288d029874 Mon Sep 17 00:00:00 2001 From: Christopher Wells Date: Thu, 5 Jan 2017 17:50:43 -0500 Subject: [PATCH 1/2] Fix player sneakjump in twilight Fix a bug that caused the player to not be able to sneakjump after exiting twilight mode. --- mods/twilight/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/twilight/init.lua b/mods/twilight/init.lua index d466961..79b2e79 100644 --- a/mods/twilight/init.lua +++ b/mods/twilight/init.lua @@ -210,7 +210,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 @@ -230,4 +230,4 @@ minetest.register_craftitem("twilight:crystal", { return itemstack end end -}) \ No newline at end of file +}) From c53462d508c9e2988d4f9c5aed582452f8636d02 Mon Sep 17 00:00:00 2001 From: Christopher Wells Date: Tue, 10 Jan 2017 18:12:06 -0500 Subject: [PATCH 2/2] Fix steel boomerang name in loot mod Fix the naming of the Steel Boomerang in the dungeon loot mod. --- mods/dungeon_loot/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/dungeon_loot/init.lua b/mods/dungeon_loot/init.lua index fbd7592..ed67327 100644 --- a/mods/dungeon_loot/init.lua +++ b/mods/dungeon_loot/init.lua @@ -28,7 +28,7 @@ local chest_stuff = { {name="maptools:nyan_coin", max = 5}, {name="twilight:crystal", max = 1}, {name="hyruletools:triforce_shard", max = 1}, - {name="hyruletools:steel_boomerang", max = 1}, + {name="hyruletools:boomerang_steel", max = 1}, {name="default:ice", max = 3} }