Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Lua main menu: Fix crash on init lua error, mapgen dropdown index, and new ↵ | kwolekr | 2013-07-03 | 1 | -2/+5 | |
| | | | | worlds not saving index | |||||
* | Change debug optimization level back to -O1 | kwolekr | 2013-07-02 | 1 | -1/+1 | |
| | ||||||
* | Move generateTextureFromMesh to TextureSource to fix a texture leak | Kahrl | 2013-07-03 | 5 | -230/+202 | |
| | | | | | | | | | | | | | TextureSource has a list of textures to delete (m_texture_trash) so this provides a proper, non-hacky way to delete RTT textures. Also, the prior, hacky way of deleting them seems to be broken (see pull request #803). To avoid header file clutter by repeating the same long list of arguments over and over again, store the arguments of generateTextureFromMesh in a struct called TextureFromMeshParams. Also fix issue #782 (Only use bilinear (and others) on item textures when settings allow it). | |||||
* | Fix possible 0 pointer access | sapier | 2013-07-02 | 1 | -2/+4 | |
| | ||||||
* | Replace C++ mainmenu by formspec powered one | sapier | 2013-07-02 | 28 | -3927/+5049 | |
| | ||||||
* | Cavegen: Prevent caves from occuring above ground level, and superfluous ↵ | kwolekr | 2013-07-01 | 2 | -2/+21 | |
| | | | | mixing of lava and water in caves | |||||
* | Remove texture atlas / AtlasPointer, rename getTextureRaw to getTexture | Kahrl | 2013-07-02 | 17 | -750/+260 | |
| | ||||||
* | Fix i18n of some strings. | arsdragonfly | 2013-07-02 | 1 | -7/+9 | |
| | ||||||
* | Decoration: Add schematic rotation support | kwolekr | 2013-07-01 | 4 | -44/+108 | |
| | ||||||
* | Disable collision fix, its broke unit tests | proller | 2013-07-01 | 1 | -1/+2 | |
| | ||||||
* | Fix sand, gravel falling stuck | proller | 2013-06-30 | 1 | -15/+18 | |
| | ||||||
* | LuaVoxelManip: Fix minor bug with set_lighting, remove coordinate params for ↵ | kwolekr | 2013-06-29 | 3 | -24/+30 | |
| | | | | light and liquid updates | |||||
* | Optimize liquid queue on generate map for liquid_finite | proller | 2013-06-30 | 2 | -6/+11 | |
| | ||||||
* | Make generated water a shade darker to match up with older versions | kwolekr | 2013-06-28 | 1 | -6/+6 | |
| | ||||||
* | Dont write player files all the time | PilzAdam | 2013-06-28 | 5 | -1/+71 | |
| | ||||||
* | Apply various fixes to several things | kwolekr | 2013-06-27 | 3 | -5/+14 | |
| | ||||||
* | LuaVoxelManip: Separate VoxelManip data get/set from emerging/blitting data ↵ | kwolekr | 2013-06-27 | 3 | -29/+43 | |
| | | | | back to map | |||||
* | Add Lua on_mapgen_init callback, and minetest.set_mapgen_params API | kwolekr | 2013-06-27 | 15 | -13/+150 | |
| | ||||||
* | Add Lua PerlinNoiseMap:get#dMap_flat API | kwolekr | 2013-06-27 | 2 | -1/+47 | |
| | ||||||
* | Add minetest.get_mapgen_object to API | kwolekr | 2013-06-27 | 13 | -9/+157 | |
| | ||||||
* | Fix issue of VManip occasionally not blitting back blocks, and pitch black ↵ | kwolekr | 2013-06-27 | 2 | -15/+26 | |
| | | | | lighting bug | |||||
* | Add LuaVoxelManip | kwolekr | 2013-06-27 | 10 | -7/+390 | |
| | ||||||
* | Fix ipv6 on windows | proller | 2013-06-24 | 1 | -1/+31 | |
| | ||||||
* | Cavegen: fix division by 0 with abnormal max tunnel diameter sizes | kwolekr | 2013-06-23 | 1 | -1/+1 | |
| | ||||||
* | Math mapgen fix, ip show on connect, pathfinder segfault fix | proller | 2013-06-23 | 7 | -34/+21 | |
| | ||||||
* | New math mapgen with fractal based worlds | proller | 2013-06-23 | 6 | -3/+444 | |
| | ||||||
* | Add support for IPv6 | proller | 2013-06-23 | 15 | -209/+469 | |
| | | | | | | | Two new configuration options are added: - "enable_ipv6" to enable/disable the overall use of IPv6 - "ipv6_server" to enable/disable the use of IPv6 sockets when running a server (when "enable_ipv6" is enabled) | |||||
* | Decoration: Add support for zero probability, fix breakage from last commit | kwolekr | 2013-06-22 | 3 | -10/+22 | |
| | ||||||
* | Print playername when failing to read playerfile and ignore files starting ↵ | PilzAdam | 2013-06-22 | 3 | -7/+7 | |
| | | | | with . | |||||
* | A handful of minor fixes to various things | kwolekr | 2013-06-22 | 5 | -24/+18 | |
| | ||||||
* | Decoration: Add Schematic decoration type | kwolekr | 2013-06-22 | 7 | -21/+528 | |
| | ||||||
* | Add a setting for max loop count per step in liquid update | PilzAdam | 2013-06-20 | 2 | -2/+7 | |
| | ||||||
* | Make minetest.debug accept multiple parameters; convert them to string | Kahrl | 2013-06-21 | 1 | -3/+21 | |
| | ||||||
* | Play placing sound only if place prediction was successful | PilzAdam | 2013-06-19 | 1 | -7/+13 | |
| | ||||||
* | Dont dig or place nodes if interact priv is missing (clientside) | PilzAdam | 2013-06-19 | 1 | -3/+6 | |
| | ||||||
* | Add drowning | PilzAdam | 2013-06-19 | 13 | -5/+66 | |
| | ||||||
* | Decoration: Place decorations in mgv6, check if air or cignore before placement | kwolekr | 2013-06-17 | 2 | -3/+14 | |
| | ||||||
* | Show number of objects in client environment in profiler (F6) | Kahrl | 2013-06-18 | 1 | -0/+2 | |
| | ||||||
* | Formspec: Don't perform black magic if selected item fits the guess | Kahrl | 2013-06-18 | 2 | -48/+49 | |
| | ||||||
* | Fix calculation of selected item (for not drawing it) in formspec | Kahrl | 2013-06-18 | 1 | -1/+1 | |
| | | | | | The previous code did not work when the list did not start at index 0 of the inventory list (issue #779). | |||||
* | Remove useless recalculation of bounding box (mapblock_mesh) | Esteban I. Ruiz Moreno | 2013-06-18 | 1 | -1/+0 | |
| | ||||||
* | Decoration, Ore: Resolve node names on Mapgen init | kwolekr | 2013-06-17 | 2 | -5/+5 | |
| | ||||||
* | Decoration: Change divlen to sidelen | kwolekr | 2013-06-17 | 3 | -6/+12 | |
| | ||||||
* | Add initial Decoration support, many misc. improvements & modifications | kwolekr | 2013-06-17 | 13 | -86/+611 | |
| | ||||||
* | Extend a delay in TestConnection from 50 to 100 milliseconds. | Kahrl | 2013-06-17 | 1 | -1/+1 | |
| | | | | | The 50 ms delay causes frequent test failures on certain systems with slow network stacks, these failures go away with the 100 ms variant. | |||||
* | Tweak IDropAction restriction handling in server.cpp | Kahrl | 2013-06-16 | 1 | -0/+12 | |
| | ||||||
* | Lazy sunday typo fixing. s/unban_player_of_ip/unban_player_or_ip/g | Kahrl | 2013-06-16 | 2 | -3/+3 | |
| | ||||||
* | Removed a redundant step which degraded performance | sweetbomber | 2013-06-15 | 1 | -2/+1 | |
| | ||||||
* | Add basic unicode support to the console (linux workaround) | Esteban I. Ruiz Moreno | 2013-06-15 | 1 | -1/+7 | |
| | ||||||
* | Reset dig_time when switching to a tool that cant dig the current node | PilzAdam | 2013-06-13 | 1 | -1/+6 | |
| |