aboutsummaryrefslogtreecommitdiff
path: root/builtin/game/misc.lua (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add more ways to pass data to check_player_privsRobert Zenz2015-10-221-5/+24
| | | | | | | | | | | 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")
* Add /emergeblocks command and core.emerge_area() Lua APIkwolekr2015-09-231-0/+19
|
* SAPI: Track last executed mod and include in error messageskwolekr2015-08-121-2/+13
|
* Decrease minetest.after globalstep lagHybridDog2015-06-061-18/+50
| | | | | | * abort if theres no active timer * only reduce the timer.time of all timers when its necessary * move updating timers_to_add into a seperate function
* Add code to support raillike group namesNovatux2015-05-121-0/+11
|
* Simplify deleteblocks chat command argument parsingkwolekr2015-01-151-24/+0
| | | | | Add optional core.pos_to_string decimal place rounding Move core.string_to_pos to builtin/common/misc_helpers.lua for consistency
* Fix indexing error in timer processingZefram2014-07-161-1/+5
|
* Use "core" namespace internallyShadowNinja2014-05-081-35/+35
|
* Organize builtin into subdirectoriesShadowNinja2014-05-071-0/+134