summaryrefslogtreecommitdiff
path: root/src/script
Commit message (Collapse)AuthorAge
...
* Add minetest.get_gametime() API function, that returns the number of seconds ↵Novatux2013-09-08
| | | | since the world was created.
* Use player:set_hotbar_image() instead of hardcoded hotbar.pngPilzAdam2013-09-05
|
* Add minetest.parse_json, engine.parse_jsonKahrl2013-09-02
|
* Fix umlauts/special character issue in lua gettextBlockMen2013-08-19
|
* Allow SIGINT to kill mainmenu againKahrl2013-08-19
|
* Add translation for main menusapier2013-08-17
| | | | Add engine.gettext() and remove gettext() calls in guiFormspecMenu.cpp
* Omnicleanup: header cleanup, add ModApiUtil shared between game and mainmenuKahrl2013-08-14
|
* Add support for entities to automatic face movement directionsapier2013-08-13
|
* Decoration: Fix schematic probability mess with new MTS file versionkwolekr2013-08-11
|
* Add support for different drowning damage and allow drowning in other nodetypesBlockMen2013-08-06
|
* Allow mods to listen to cheat detections using minetest.register_on_cheat()Perttu Ahola2013-08-04
|
* Add replacements to schematicsPilzAdam2013-08-03
|
* Allow multiple 'wherein' nodes in oredefPilzAdam2013-08-02
|
* Add support for setting stepheight for entitiessapier2013-07-30
|
* Better snow fall, finite liquid transform, leveled nodes apiproller2013-07-28
|
* Weather supportproller2013-07-27
|
* Add an option to disable object <-> object collision for Lua entitiesPilzAdam2013-07-20
|
* Add liquid_range to nodedefPilzAdam2013-07-20
|
* Make range of tools configureablePilzAdam2013-07-20
|
* Add set_breath and get_breath to lua API.RealBadAngel2013-07-20
|
* Change ContentFeatures array to a vectorKahrl2013-07-14
|
* Leveled nodeboxproller2013-07-13
|
* LuaVoxelManip: Allow liquid updates in non-mapgen VoxelManip objectskwolekr2013-07-06
|
* Mapgen V7: Huge rewrite, also tweaks to cavegen et al.kwolekr2013-07-06
|
* Fix possible 0 pointer accesssapier2013-07-02
|
* Decoration: Add schematic rotation supportkwolekr2013-07-01
|
* LuaVoxelManip: Fix minor bug with set_lighting, remove coordinate params for ↵kwolekr2013-06-29
| | | | light and liquid updates
* Apply various fixes to several thingskwolekr2013-06-27
|
* LuaVoxelManip: Separate VoxelManip data get/set from emerging/blitting data ↵kwolekr2013-06-27
| | | | back to map
* Add Lua on_mapgen_init callback, and minetest.set_mapgen_params APIkwolekr2013-06-27
|
* Add Lua PerlinNoiseMap:get#dMap_flat APIkwolekr2013-06-27
|
* Add minetest.get_mapgen_object to APIkwolekr2013-06-27
|
* Add LuaVoxelManipkwolekr2013-06-27
|
* Decoration: Add support for zero probability, fix breakage from last commitkwolekr2013-06-22
|
* A handful of minor fixes to various thingskwolekr2013-06-22
|
* Decoration: Add Schematic decoration typekwolekr2013-06-22
|
* Make minetest.debug accept multiple parameters; convert them to stringKahrl2013-06-21
|
* Add drowningPilzAdam2013-06-19
|
* Decoration: Change divlen to sidelenkwolekr2013-06-17
|
* Add initial Decoration support, many misc. improvements & modificationskwolekr2013-06-17
|
* Lazy sunday typo fixing. s/unban_player_of_ip/unban_player_or_ip/gKahrl2013-06-16
|
* Fix class/struct forward declaration inconsistencies (good on ya, MSVC)Kahrl2013-06-06
|
* Corrected segfault when registering new biomes.sweetbomber2013-06-03
|
* Fix missing find_path and line_of_sightsapier2013-06-01
|
* Fix some nullptr exceptions when handling invalid node inventoriesMetaDucky2013-06-01
|
* Fix minetest.get_inventory(loc) always returning nil for "node" type locMetaDucky2013-06-01
|
* Fixed wrongly named invref:get_location() table members for nodes.MetaDucky2013-05-26
| | | | Makes the result compatible with the minetest.get_inventory(location) param.
* Add ObjectRef.hud_set_hotbar_itemcount and add TOCLIENT_HUD_SET_PARAMKahrl2013-05-26
|
* Fix itemstack:add item not working correctsapier2013-05-25
|
* Move scriptapi to separate folder (by sapier)sapier2013-05-25
On the lua side, notably minetest.env:<function>(<args>) should now be replaced by minetest.<function>(<args>). The old way is and will stay supported for a long time. Also: Update and clean up lua_api.txt (by celeron55) Move EnvRef to lua and remove add_rat and add_firefly (by kahrl) Add separate src/util/CMakeLists.txt, other minor fixes (by kahrl)