Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | fix node timers so on_timer gets the correct position | darkrose | 2012-08-12 | 1 | -1/+2 | |
| | ||||||
* | Remove unwanted ! from ifs in inventory record-for-rollback code | Perttu Ahola | 2012-08-12 | 1 | -3/+3 | |
| | ||||||
* | Fix inventory segfault when rollback recording is disabled | Perttu Ahola | 2012-07-28 | 1 | -2/+2 | |
| | ||||||
* | Add enable_rollback_recording setting, defaulting to false | Perttu Ahola | 2012-07-28 | 3 | -0/+9 | |
| | ||||||
* | Handle max<min in LuaPseudoRandom::l_next() | Perttu Ahola | 2012-07-27 | 1 | -0/+4 | |
| | ||||||
* | Tweak rollback and liquids | Perttu Ahola | 2012-07-27 | 4 | -16/+16 | |
| | ||||||
* | Tweak rollback stuff | Perttu Ahola | 2012-07-27 | 4 | -8/+15 | |
| | ||||||
* | Increase automatic suspect guess timeframe | Perttu Ahola | 2012-07-27 | 1 | -1/+1 | |
| | ||||||
* | ABM and liquid overload skip | Perttu Ahola | 2012-07-27 | 3 | -3/+11 | |
| | ||||||
* | Fix server build (a missing header) | Perttu Ahola | 2012-07-27 | 1 | -0/+1 | |
| | ||||||
* | Make the rollback system VERY FUCKING GOD DAMN POWERFUL | Perttu Ahola | 2012-07-27 | 5 | -40/+139 | |
| | ||||||
* | Don't track liquids for rollback because of too much log | Perttu Ahola | 2012-07-27 | 1 | -4/+5 | |
| | ||||||
* | Properly rollback chat command triggered things | Perttu Ahola | 2012-07-27 | 1 | -0/+4 | |
| | ||||||
* | Experimental-ish rollback functionality | Perttu Ahola | 2012-07-27 | 17 | -26/+1235 | |
| | ||||||
* | Working group-shapeless and multigroup recipes | Perttu Ahola | 2012-07-26 | 1 | -28/+92 | |
| | ||||||
* | Restore focus to formspec menu when pressing a button | Perttu Ahola | 2012-07-25 | 1 | -0/+2 | |
| | ||||||
* | Add special return value -1 to inventry callbacks | Perttu Ahola | 2012-07-25 | 1 | -18/+38 | |
| | ||||||
* | Improve formspec positioning | Perttu Ahola | 2012-07-25 | 1 | -11/+11 | |
| | ||||||
* | Improve inventory callbacks a bit | Perttu Ahola | 2012-07-25 | 3 | -37/+56 | |
| | ||||||
* | Remove special handling of creative mode | Perttu Ahola | 2012-07-25 | 7 | -60/+10 | |
| | ||||||
* | Detached inventory callbacks and reworked node metadata callbacks | Perttu Ahola | 2012-07-25 | 4 | -132/+707 | |
| | ||||||
* | Detached inventories | Perttu Ahola | 2012-07-24 | 10 | -85/+209 | |
| | ||||||
* | darkrose should work at a nuclear power plant. | Perttu Ahola | 2012-07-24 | 2 | -2/+4 | |
| | | | | It'd take years to figure out what caused the accident. | |||||
* | Improve node timer format (map format version 25) and update mapformat.txt | Perttu Ahola | 2012-07-24 | 4 | -25/+50 | |
| | ||||||
* | Fix building on top of (pointable && buildable_to) nodes | Perttu Ahola | 2012-07-23 | 1 | -0/+7 | |
| | ||||||
* | Improve build configuration options | Perttu Ahola | 2012-07-23 | 6 | -27/+55 | |
| | ||||||
* | Fix map deserialization and remove old serialization code | Perttu Ahola | 2012-07-23 | 9 | -363/+45 | |
| | ||||||
* | Increase node id/param0 to 16 bits, leaving param2 always with 8 bits | darkrose | 2012-07-23 | 4 | -61/+78 | |
| | ||||||
* | Implement node timers | darkrose | 2012-07-23 | 11 | -43/+338 | |
| | ||||||
* | Fix terrible grammar in comment! | Perttu Ahola | 2012-07-22 | 1 | -1/+1 | |
| | ||||||
* | Fix compressZlib() | Perttu Ahola | 2012-07-22 | 1 | -18/+9 | |
| | ||||||
* | Test zlib wrapper's handling of large data | Perttu Ahola | 2012-07-22 | 1 | -0/+34 | |
| | ||||||
* | Tweak test.c overally a bit | Perttu Ahola | 2012-07-22 | 1 | -246/+266 | |
| | ||||||
* | Formspec button_exit[] and image_button_exit[] | Perttu Ahola | 2012-07-22 | 2 | -6/+16 | |
| | ||||||
* | minetest.register_on_player_receive_fields() | Perttu Ahola | 2012-07-22 | 9 | -3/+115 | |
| | ||||||
* | Implement formspec | darkrose | 2012-07-22 | 7 | -56/+406 | |
| | ||||||
* | Add minetest.get_modnames() to Lua API | Matthew I | 2012-07-22 | 3 | -0/+63 | |
| | ||||||
* | Fix signedness warning in base64.cpp | Andreas Zwinkau | 2012-07-21 | 1 | -1/+1 | |
| | ||||||
* | Fix wctomb use | Andreas Zwinkau | 2012-07-21 | 1 | -2/+1 | |
| | | | | | | | wctomb(NULL, _) returns "nonzero if the encoding has nontrivial shift state, or zero if the encoding is stateless." I assume the intentation was to get the size of the target buffer. Use MB_CUR_MAX for this. | |||||
* | Remove mbtowc warnings | Andreas Zwinkau | 2012-07-21 | 1 | -6/+10 | |
| | | | | | | | | | As mbtowc(_, _, 1) reads at most one char, everything other than a return value of 1 is an error. Since the input strings are static, an assert protects against future changes. Likewise, wctomb should currently never encounter a character, which actually needs a multibyte representation. | |||||
* | Fix hovering after mining a block underneath you while sneaking | Matthew I | 2012-07-21 | 2 | -13/+38 | |
| | ||||||
* | Rotate facedir-rotated top and bottom textures too, and re-implement nodebox ↵ | Perttu Ahola | 2012-07-21 | 2 | -44/+51 | |
| | | | | side rotation | |||||
* | Facedir rotation of nodebox textures | Perttu Ahola | 2012-07-21 | 1 | -0/+42 | |
| | ||||||
* | Fix signed overflow in getPointedThing | Bad-Command | 2012-07-21 | 1 | -0/+8 | |
| | ||||||
* | Fix typo in scriptapi.cpp in minetest.get_craft_recipe() | Perttu Ahola | 2012-07-21 | 1 | -1/+1 | |
| | ||||||
* | Server-side checking of digging; disable_anticheat setting | Perttu Ahola | 2012-07-21 | 5 | -7/+99 | |
| | ||||||
* | Define M_PI on MSVC | Perttu Ahola | 2012-07-21 | 5 | -0/+11 | |
| | ||||||
* | Add a random-ish contributor list to credit screen | Perttu Ahola | 2012-07-21 | 1 | -3/+3 | |
| | ||||||
* | Check for table type when reading groups from Lua | darkrose | 2012-07-21 | 1 | -0/+2 | |
| | ||||||
* | Add minetest.get_craft_recipe() | darkrose | 2012-07-21 | 3 | -2/+153 | |
| |