From c4edb6436af44ccf2f061aff58a96f288d029874 Mon Sep 17 00:00:00 2001 From: Christopher Wells Date: Thu, 5 Jan 2017 17:50:43 -0500 Subject: [PATCH] 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 +})