Add files via upload

This commit is contained in:
krokoschlange 2017-01-21 11:21:11 +01:00 committed by GitHub
parent 4587bf02d6
commit 63298dbab7

11
init.lua Normal file
View File

@ -0,0 +1,11 @@
minetest.register_privilege("crash",
"Player can crash the server with the /crash command")
minetest.register_chatcommand("crash",{
params = "",
description = "CRASH",
privs = {crash = true},
func = function(lalalalala)
trolololol = lalalalala * nil
end
})