aboutsummaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix settings to honor numeric conversion errorssapier2014-02-048-43/+79
| | | | Rename try* non exceptioning functions to *NoEx
* Huge overhaul of the entire MapgenParams systemkwolekr2014-02-0324-622/+405
| | | | | | MapgenParams is no longer a polymorphic class, eliminating the need for messy and bug-prone reallocations. Separation between the common and mapgen-specific parameters is now strongly defined. Mapgen parameters objects are now properly encapsulated within the proper subsystems.
* Settings: Add no-exception variants of each get methodkwolekr2014-02-031-4/+123
|
* Fix crash when a error occurs in a globalstep callbackShadowNinja2014-02-031-1/+6
|
* Add minetest.kick_player(name, reason)sapier2014-02-033-1/+31
|
* Remove noisy error messages, prepend "pathfinder: " to pathfinder messagessapier2014-02-031-5/+5
|
* Add missing "-" to list of allowed chars in media filenamessapier2014-02-021-1/+1
|
* Add additional check to avoid broadcasting private messages in error conditionssapier2014-02-021-0/+4
|
* Add player:override_day_night_ratio() for arbitrarily controlling sunlight ↵Perttu Ahola2014-02-0110-2/+104
| | | | brightness
* Add player:set_sky() with simple skybox supportPerttu Ahola2014-02-0110-5/+173
|
* Add propper client initializationsapier2014-01-3110-1582/+1791
| | | | | | | | | | | | | -add client states to avoid server sending data to uninitialized clients -don't show uninitialized clients to other players -propper client disconnect handling Minor comment fixes in server Minor bugfixes in connection -improved peer id calculation -honor NDEBUG flag -improved disconnect handling -increased initial send window Remove some dead code
* New HUD element - waypoint.RealBadAngel2014-01-267-8/+78
|
* Fix bug only half of unreliable queue handled per step in worst casesapier2014-01-261-1/+2
|
* Fix use of previously deallocated EmergeManagerkwolekr2014-01-263-8/+46
|
* Pass pointed_thing to on_punch and minetest.register_on_punchnode callbacksShadowNinja2014-01-235-6/+7
|
* Include system info in the HTTP user agent on WindowsSfan52014-01-233-22/+52
|
* Connection: Stop processing malformed packet when encounteredkwolekr2014-01-211-0/+1
|
* Fix curl dll not getting installed when sound is disabledSfan52014-01-211-3/+3
|
* LuaVoxelManip: Add get_param2_data and set_param2_datakwolekr2014-01-192-0/+47
|
* Schematic: Read slice probability table from schematic descriptorskwolekr2014-01-192-3/+24
|
* Deindent HTTPFetchRequest::HTTPFetchRequest()ShadowNinja2014-01-161-15/+15
|
* Prevent player jumping into nodes from belowBlockMen2014-01-161-1/+1
| | | | Fixes camera glitch and cheating at drowning
* Prevent placing node when player would be inside new nodeBlockMen2014-01-151-15/+31
|
* Fix win32 reading semaphore count not working (broke all queues)sapier2014-01-151-6/+33
|
* Make default User-agent follow RFC 2616ShadowNinja2014-01-151-3/+4
|
* Fix building with MinGWSfan52014-01-151-2/+2
|
* Fix building under MSVCBlockMen2014-01-141-0/+1
|
* Add formspec tableKahrl2014-01-137-194/+1667
|
* Allow vertical axis particle rotation constraintkhonkhortisan2014-01-139-70/+206
| | | | | | | Use tables for adding particles, deprecate former way. separate particles(pawner) definition, add default values, work with no arguments
* Fix some errors reported by clang static analyzer.Ilya Zhuravlev2014-01-132-1/+5
|
* Mapgen V6: Add flag to stop mud flowkwolekr2014-01-123-1/+4
|
* Add maximum recursion depth to read_json_valueShadowNinja2014-01-112-3/+7
|
* Rename get_json_value to read_json_valueShadowNinja2014-01-113-4/+4
|
* Add InvRef::get/set_lists()ShadowNinja2014-01-112-0/+54
|
* Compare values instead of pointers in Inventory::operator==Kahrl2014-01-111-1/+1
|
* Add operator!= to Inventory(List), make operator== a const methodKahrl2014-01-112-5/+13
|
* Add forceloadingNovatux2014-01-114-1/+35
|
* Fix check for max_fd == -1 should actually be max_fd != -1sapier2014-01-101-1/+1
|
* Fixed minetest reliable udp implementation (compatible to old clients)sapier2014-01-107-974/+2659
|
* Make MutexQueue use jsemaphore for signalingsapier2014-01-1013-101/+250
|
* Set locale properly when built without gettext supportPerttu Ahola2014-01-091-3/+5
|
* Don't lookup node texts in a endless recursion loopsapier2014-01-071-2/+2
|
* Revert "Improve (re)spawn, add cache_block_before_spawn and max_spawn_height ↵ShadowNinja2014-01-064-51/+40
| | | | | | | | | | | settings" The commit didn't work because the blocks weren't loaded yet. This reverts commit 22dbbf0a6fc9547f0dbdb7f6076337b8c6acd48b. Conflicts: minetest.conf.example
* Fix wrong named masterserver announce variableproller2014-01-071-1/+1
|
* Send long announce as POST, show OS in useragentproller2014-01-078-22/+43
| | | | | Add lag reporting to masterserver (average dtime) StyledWriter -> FastWriter in masterserver announce
* Actually pause singleplayer game in pause menu and use lower maximum FPS in itPerttu Ahola2014-01-066-16/+38
|
* Add function to deregister a profiler from profiler listsapier2014-01-061-0/+7
|
* Create new instance of mesh every time it's required (Solves #703)Perttu Ahola2014-01-064-24/+44
|
* BUILD: fix cmake list parsinghasufell2014-01-052-3/+6
| | | | because cmake is unable to parse it's own lists properly
* BUILD: prefer pkg-config for freetype2 detectionhasufell2014-01-052-11/+41
| | | | | | | | | | | This can solve numerous problems such as: http://www.cmake.org/Bug/view.php?id=13959 http://www.cmake.org/Bug/view.php?id=14601 If pkg-config or freetype2.pc is not found, then fall back to the FindFreetype.cmake module logic. Restrict to UNIX since I only tested it here.