Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-05-25 | Move scriptapi to separate folder (by sapier) | sapier | |
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) | |||
2013-05-01 | Fix minetest.features | PilzAdam | |
2013-05-01 | Add a Way of checking for specific Feature with Lua Adds ↵ | Sfan5 | |
minetest.get_feature() and minetest.has_feature() | |||
2013-04-23 | Add option to not prepend "Server -!- " to messages sent with ↵ | ShadowNinja | |
minetest.chat_send_player() | |||
2013-04-08 | Use system wide LuaJIT if aviable. | RealBadAngel | |
2013-04-05 | Only enqueue falling nodes if they really want to fall | PilzAdam | |
2013-04-05 | unkn own block -> unkn own node | khonkhortisan | |
2013-04-05 | Add private messaging with /msg | ShadowNinja | |
2013-04-05 | Use the nodebox as selection box if it's not set manually | Diego Martínez | |
2013-04-05 | Add a delay to nodeupdate() | PilzAdam | |
2013-04-02 | Return an ItemStack in minetest.item_place() if nodes' on rightclick doesnt ↵ | PilzAdam | |
return it | |||
2013-03-30 | Don't grant priveleges to non-existent players. | 0gb.us | |
When accidentally misspelling a name, privileges are sometimes granted to non-existent players, leaving them with the extra privileges, but without the default privileges, if they ever join the server. This corrects that by disallowing /grant from working with invalid players. For completeness, it does the same for /revoke. | |||
2013-03-29 | Fix node replacement in not-quite-loaded chunks | 0gb.us | |
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. | |||
2013-03-19 | Allow falling nodes to pass through solid "buildable_to" nodes. | Splizard | |
2013-03-19 | Prevent passing nil to unpack() in minetest.after | PilzAdam | |
2013-03-17 | Allow minetest.after to take a variable number of arguments | Jeija | |
2013-03-05 | Allow any character in formspec strings with escape char | kwolekr | |
2013-03-03 | Fix pickup of dropped items when the player only takes a part of them | PilzAdam | |
2013-02-21 | Drop nodes as items when dugged and no room in inventory and dont remove ↵ | PilzAdam | |
dropped items when no room in inventory | |||
2013-02-19 | Dont drop tools on rightclick | PilzAdam | |
2013-02-18 | Set numeric locale for Lua | Ilya Zhuravlev | |
2013-02-13 | Fix minetest.item_place_node() and minetest.item_drop() to always return an ↵ | PilzAdam | |
ItemStack | |||
2013-02-13 | Fix to on_rightclick not able to change wielded_item | RealBadAngel | |
2013-01-27 | Dont call on_rightclick() if sneak is pressed | PilzAdam | |
2013-01-12 | Fix spread of items in falling code | PilzAdam | |
2013-01-04 | Add on_rightclick(pos, node, clicker) callback for nodes | PilzAdam | |
2012-12-17 | Add ability to change the itemstack in placenode callbacks | PilzAdam | |
2012-12-15 | Fix item entity's collision with nodeboxes | jordan4ibanez | |
2012-12-11 | Only fly through walls in noclip mode wich requires the noclip privilege | PilzAdam | |
2012-12-02 | Fix minetest.get_node_drops(). It should always return list of item names, ↵ | Ilya Zhuravlev | |
not ItemStack(s). | |||
2012-12-01 | Only check attachment for nodes with group attached_node | PilzAdam | |
2012-12-01 | Add the group attached_node | PilzAdam | |
Nodes in this group will be dropped as items if the node under them or the node in the wallmounted direction is not walkable. | |||
2012-11-30 | Log /grant and /revoke command usage | DannyDark | |
2012-11-30 | Add shutdown hook interface to Lua API | Matthew I | |
Scripts can call minetest.register_on_shutdown() to register a shutdown hook. Document that minetest.register_on_shutdown() callbacks may not be run If the server crashes, it is unlikely that callbacks registered using minetest.register_on_shutdown() will be called. | |||
2012-11-27 | Revert "Use wielditem drawtype for all nodes in item_entity" | Perttu Ahola | |
This reverts commit ffad18e42442fed10c312adc989fc62b74e05896. | |||
2012-11-26 | Use wielditem drawtype for all nodes in item_entity | PilzAdam | |
2012-11-20 | Fix server crash on /clearpassword | Anthony | |
According to #253, using `/clearpassword` without an argument causes the server to crash from an assertion failure. I've resubmitted matttpt's patch as a pull request to aid in merging. | |||
2012-11-03 | Merge pull request #274 from PilzAdam/falling | PilzAdam | |
Fix a bug in falling code where entities get stuck | |||
2012-11-03 | Make air and ignore drop nothing | PilzAdam | |
2012-11-03 | Fix a bug in falling code where entities get stuck | PilzAdam | |
2012-10-31 | Remove a useless comment | PilzAdam | |
2012-10-31 | Move falling to builtin | PilzAdam | |
2012-09-09 | Statically store always_collect field of __builtin:item | Perttu Ahola | |
2012-09-02 | Add overridable function for handling dropped items from nodes | Perttu Ahola | |
2012-08-19 | Fix github issue #213: Dropping unknown items crashes the game | Perttu Ahola | |
The items will now just disappear when dropped. | |||
2012-08-12 | Move chat commands to Lua and remove servercommand.{cpp,h} | Matthew I | |
Commands moved: /me /status /time /shutdown /ban /clearobjects | |||
2012-08-12 | Allow digging of unknown nodes | Matthew I | |
This allows the removal of nodes with unknown types. get_item_callback() (C++) would fail if a node has an unknown type. Now it will try using the callback from minetest.nodedef_default in this case. Also, minetest.node_dig() (Lua) was altered to always allow digging when the node definition is empty (i.e. unknown node). | |||
2012-07-27 | Make the rollback system VERY FUCKING GOD DAMN POWERFUL | Perttu Ahola | |
2012-07-27 | Don't track liquids for rollback because of too much log | Perttu Ahola | |
2012-07-27 | Experimental-ish rollback functionality | Perttu Ahola | |