Robert Zenz c32847838d Add more ways to pass data to check_player_privs
The callback can now be invoked with either the player object or name as
the first parameter, and with either a table or a list of strings, like
this:

    minetest.check_player_privs(player_name, { shout = true, fly = true })
    minetest.check_player_privs(player_name, "shout", "fly")
    minetest.check_player_privs(player, { shout = true, fly = true })
    minetest.check_player_privs(player, "shout", "fly")
2015-10-22 19:55:48 +02:00
..
2015-10-14 01:03:54 -04:00
2015-09-29 23:06:15 +02:00
2015-10-04 03:19:18 +02:00
2014-05-08 13:02:04 -04:00
2015-10-14 01:03:54 -04:00