init.lua 164 B

1234567
  1. minetest.register_chatcommand("shutdown", {
  2. description = "Shutdown game.",
  3. func = function ( name, param )
  4. minetest.request_shutdown()
  5. end
  6. })