Fix negative offsets not being supported by container[]
[oweals/minetest.git] / builtin / common / chatcommands.lua
index 52edda659baab0a89ede36a09b6c45faf6877641..71204657c976e09535f1417caed0c0c7ebea8296 100644 (file)
@@ -77,13 +77,6 @@ local function do_help_cmd(name, param)
                end
                table.sort(cmds)
                return true, gettext("Available commands:").."\n"..table.concat(cmds, "\n")
-       elseif INIT == "game" and param == "privs" then
-               local privs = {}
-               for priv, def in pairs(core.registered_privileges) do
-                       privs[#privs + 1] = priv .. ": " .. def.description
-               end
-               table.sort(privs)
-               return true, "Available privileges:\n"..table.concat(privs, "\n")
        else
                local cmd = param
                local def = core.registered_chatcommands[cmd]