Add minetest.get_connected_players()

This commit is contained in:
Perttu Ahola 2012-03-30 13:45:51 +03:00 committed by Nils Dagsson Moskopp
parent 54cc862b37
commit 9045011c10
Signed by: erlehmann
GPG Key ID: A3BC671C35191080
1 changed files with 11 additions and 0 deletions

View File

@ -837,6 +837,17 @@ function minetest.check_player_privs(name, privs)
return true, ""
end
function minetest.get_connected_players()
-- This could be optimized a bit, but leave that for later
local list = {}
for _, obj in pairs(minetest.env:get_objects_inside_radius({x=0,y=0,z=0}, 1000000)) do
if obj:get_player_name() then
table.insert(list, obj)
end
end
return list
end
--
-- Chat commands
--