mirror of
https://github.com/redstrate/Kawari.git
synced 2025-06-30 11:47:45 +00:00
9 lines
280 B
Lua
9 lines
280 B
Lua
required_rank = GM_RANK_DEBUG
|
|
|
|
function onCommand(args, player)
|
|
local sender = "[wireframe] "
|
|
local usage = "\nThis command allows the user to view the world in wireframe mode."
|
|
|
|
player:toggle_wireframe()
|
|
player:send_message(sender.."Wireframe mode toggled.")
|
|
end
|