Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | Update Credits tab | kwolekr | 2013-03-29 | 1 | -5/+6 | |
| | | ||||||
| * | Fix node replacement in not-quite-loaded chunks | 0gb.us | 2013-03-29 | 1 | -3/+10 | |
| | | | | | | | | When first entering an area, sometimes placing nodes replaces other nodes that are not buildable_to. This seems to be caused by the fact that nodes in unloaded map blocks are treated as ignore, a node that is buildable_to. This fixes that, by using get_node_or_nil() instead of the previously-used get_node(), then checking to see if the nodes were actually loaded before replacing. | |||||
| * | Fix last singlenode modification | kwolekr | 2013-03-29 | 1 | -7/+8 | |
| | | ||||||
| * | Don't replace existing nodes in singlenode mapgen | kwolekr | 2013-03-29 | 1 | -6/+11 | |
| | | ||||||
| * | Prevent infinite loop with invalid Inventory format | kwolekr | 2013-03-27 | 1 | -0/+4 | |
| | | ||||||
| * | Fix parameter list of obj:set_attach() and obj:set_bone_position() | PilzAdam | 2013-03-28 | 1 | -2/+8 | |
| | | ||||||
| * | Closed add object <-> object collision handling | sapier | 2013-03-28 | 10 | -33/+157 | |
| | | ||||||
| * | README.txt: Add some build stuff | Perttu Ahola | 2013-03-26 | 1 | -1/+2 | |
| | | ||||||
| * | Vary ore sheet y position by noise | kwolekr | 2013-03-24 | 2 | -6/+9 | |
| | | ||||||
| * | Ensure ore can fit in OreSheet::generate() | kwolekr | 2013-03-24 | 1 | -3/+4 | |
| | | ||||||
| * | Use minetest.register_ore() in minimal | PilzAdam | 2013-03-24 | 1 | -54/+64 | |
| | | ||||||
| * | Add more error checking to l_register_ore | kwolekr | 2013-03-24 | 1 | -2/+14 | |
| | | ||||||
| * | Fix indentation of lua_api.txt | Perttu Ahola | 2013-03-24 | 1 | -74/+74 | |
| | | ||||||
| * | Update lua_api.txt | kwolekr | 2013-03-24 | 1 | -1/+43 | |
| | | ||||||
| * | Add Ore infrastructure and l_register_ore() | kwolekr | 2013-03-24 | 10 | -17/+248 | |
| | | ||||||
| * | Mapgen indev: float islands, larger far biomes | proller | 2013-03-24 | 7 | -78/+233 | |
| | | ||||||
| * | Allow spawning particles from the server, from lua | Jeija | 2013-03-23 | 13 | -55/+1059 | |
| | | | | | | | | | | | | | | | | | | Spawn single particles or make use of ParticleSpawner for many randomly spawned particles. Accessible in Lua using minetest.spawn_particle and minetest.add_particlespawner. Increase Protocol Version to 17. Conflicts: src/clientserver.h | |||||
| * | Move rightclickable to the proper place | PilzAdam | 2013-03-23 | 2 | -2/+3 | |
| | | ||||||
| * | Include backface_culling flag in serialization format for TileDefs | Jürgen Doser | 2013-03-23 | 3 | -10/+17 | |
| | | | | | | | | | | | | | | | | | | | | This way flowing liquids actually show the backface when specified to do so. Without this, TileDefs where by default initialized with backface_culling = true and never set otherwise. For backwards compatibility, an old client connected to a new server, or a new client connected to an old server will behave like before i.e., backface_culling is always true. | |||||
| * | Set of changes to build mineTest using Visual Studio 11.0. These affect | Mukul Sati | 2013-03-24 | 4 | -4/+6 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | the following: 1. String concatenation in guiMainMenu.cpp - it is required for all individual strings to be of the same type <unicode/non-unicode>; adding explicit L qualifier before the other strings. 2. Correcting type of BlockMakeData to struct in place of class forward declarations. This information is used for name decoration by Visual Studio, leading to linker errors in case of mismatches. 3. Windows headers define max as a macro somewhere, leading to a compile time error in profiler.h; using () around function to prevent macro match from occurring. | |||||
| * | 6d facedir | RealBadAngel | 2013-03-23 | 5 | -86/+335 | |
| | | ||||||
| * | Merge pull request #563 from proller/guest | proller | 2013-03-23 | 3 | -2/+37 | |
| |\ | | | | | | | Random guest name and finite liquid checkbox | |||||
| | * | Random guest name and finite liquid checkbox | proller | 2013-03-23 | 3 | -2/+37 | |
| |/ | ||||||
| * | Add singlenode mapgen; generates solely the node 'mapgen_singlenode', ↵ | Perttu Ahola | 2013-03-22 | 5 | -1/+153 | |
| | | | | | | | | defaults to air | |||||
| * | CMakeLists.txt: Add games/common to be installed when available | Perttu Ahola | 2013-03-22 | 1 | -0/+5 | |
| | | ||||||
| * | Support game-specific minetest.conf | Perttu Ahola | 2013-03-21 | 6 | -0/+30 | |
| | | ||||||
| * | lua_api.txt: Document paths, games and common mod loading | Perttu Ahola | 2013-03-21 | 1 | -0/+30 | |
| | | ||||||
| * | Update buildwin32.sh to get minetest/common | Perttu Ahola | 2013-03-21 | 1 | -0/+11 | |
| | | ||||||
| * | Update README.txt to instruct to get minetest/common too | Perttu Ahola | 2013-03-21 | 1 | -5/+13 | |
| | | ||||||
| * | Common mods support | Perttu Ahola | 2013-03-21 | 4 | -7/+68 | |
| | | | | | | | | | | | | | | Implement "common mods", includeable from {$user,$share}/games/common/$modname by using the game.conf setting common_mods = $modname,$modname2,... | |||||
| * | Allow falling nodes to pass through solid "buildable_to" nodes. | Splizard | 2013-03-19 | 1 | -1/+7 | |
| | | ||||||
| * | Git-ignore SQLite build files | Juhani Numminen | 2013-03-19 | 1 | -0/+2 | |
| | | ||||||
| * | Fix Map::initBlockMake to actually use chunksize setting | kwolekr | 2013-03-18 | 1 | -7/+3 | |
| | | ||||||
| * | Prevent passing nil to unpack() in minetest.after | PilzAdam | 2013-03-19 | 1 | -2/+2 | |
| | | ||||||
| * | Add jungle grass to jungles | kwolekr | 2013-03-17 | 4 | -13/+53 | |
| | | ||||||
| * | Don't erase modified_blocks | Ilya Zhuravlev | 2013-03-17 | 1 | -3/+3 | |
| | | ||||||
| * | Add FPS limit to menu clouds | ShadowNinja | 2013-03-17 | 1 | -2/+22 | |
| | | ||||||
| * | lua methods set_look_pitch and set_look_yaw | RealBadAngel | 2013-03-17 | 5 | -2/+51 | |
| | | ||||||
| * | Fix new_style_water | PilzAdam | 2013-03-17 | 2 | -11/+136 | |
| | | ||||||
| * | Add missing settings to minetest.conf.example | PilzAdam | 2013-03-17 | 1 | -1/+4 | |
| | | ||||||
| * | Allow minetest.after to take a variable number of arguments | Jeija | 2013-03-17 | 2 | -5/+5 | |
| | | ||||||
| * | build with ogles2 driver | proller | 2013-03-16 | 3 | -0/+140 | |
| | | ||||||
| * | Some minor cleanups from the last commit | kwolekr | 2013-03-16 | 4 | -9/+11 | |
| | | ||||||
| * | initial mapgen indev version with farscale feature and huge caves | proller | 2013-03-16 | 12 | -41/+456 | |
| | | ||||||
| * | Make saplings only grow on dirt or grass, make jungle tree trunks only ↵ | kwolekr | 2013-03-16 | 2 | -12/+35 | |
| | | | | | | | | replace air | |||||
| * | Re-add jungles, apple trees | kwolekr | 2013-03-16 | 8 | -44/+118 | |
| | | ||||||
| * | Optimize Mapgen::updateLighting(), add setLighting() | kwolekr | 2013-03-15 | 2 | -8/+113 | |
| | | ||||||
| * | Liquid fine tuning | proller | 2013-03-14 | 5 | -53/+112 | |
| | | ||||||
| * | Remove 'tape and glue', update Credits tab | kwolekr | 2013-03-14 | 1 | -12/+65 | |
| | | ||||||
| * | Add cloud menu background by Krisi, configurable with the menu_clouds option. | ShadowNinja | 2013-03-13 | 11 | -56/+177 | |
| | | | | | | | | | | Also add a menuheader, menusplash, menufooter_clouds, and allow HD menu footers. And finally don't git-ignore textures/base/. |