commit 6dded8a850c806bc7aa49c1938c59cb104031d85 Author: Wuzzy Date: Sat Jul 2 17:30:30 2016 +0200 Initial commit diff --git a/depends.txt b/depends.txt new file mode 100644 index 0000000..e69de29 diff --git a/description.txt b/description.txt new file mode 100644 index 0000000..cdefa4e --- /dev/null +++ b/description.txt @@ -0,0 +1 @@ +This mod disables the sneak glitch for all players. diff --git a/init.lua b/init.lua new file mode 100644 index 0000000..79655a4 --- /dev/null +++ b/init.lua @@ -0,0 +1,3 @@ +minetest.register_on_joinplayer(function(player) + player:set_physics_override({sneak_glitch=false, sneak=false}) +end) diff --git a/mod.conf b/mod.conf new file mode 100644 index 0000000..0d2f803 --- /dev/null +++ b/mod.conf @@ -0,0 +1 @@ +name = no_sneak_glitch