From e8bb6d9ed1a77eb3183e21bd6ec29bb894fad6da Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Sat, 5 Dec 2015 19:07:48 +0000 Subject: [PATCH] Allow sneaking --- mods/no_sneak_glitch/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/no_sneak_glitch/init.lua b/mods/no_sneak_glitch/init.lua index 79655a4..ae00c79 100644 --- a/mods/no_sneak_glitch/init.lua +++ b/mods/no_sneak_glitch/init.lua @@ -1,3 +1,3 @@ minetest.register_on_joinplayer(function(player) - player:set_physics_override({sneak_glitch=false, sneak=false}) + player:set_physics_override({sneak_glitch=false}) end)