telepro/comandos.lua

22 lines
476 B
Lua
Raw Permalink Normal View History

2017-06-18 08:06:25 -07:00
--[[
Mod Telepro para Minetest
Copyright (C) 2017 BrunoMine (https://github.com/BrunoMine)
Recebeste uma cópia da GNU Lesser General
Public License junto com esse software,
se não, veja em <http://www.gnu.org/licenses/>.
Comandos
]]
2018-07-13 13:56:23 -07:00
local S = telepro.S
2017-06-18 08:06:25 -07:00
-- Reivindicar balao
2018-07-13 13:56:23 -07:00
minetest.register_chatcommand("balloon", {
2017-06-18 08:06:25 -07:00
privs = {},
2018-07-13 13:56:23 -07:00
description = S("Painel de Balao"),
2017-06-18 08:06:25 -07:00
func = function(name, param)
telepro.acessar(minetest.get_player_by_name(name))
end
})