Skip to content
Snippets Groups Projects
  1. May 24, 2017
  2. Mar 29, 2017
  3. Mar 01, 2017
    • Auke Kok's avatar
      Allow interaction with nodes while wielding these items. · 78c632eb
      Auke Kok authored
      - beds
      - boats
      - carts
      - key/skeleton key
      - seeds
      
      All these had on_place handlers that did not allow nodes with
      an on_rightclick() handler to be used first (if not using
      sneak). This code is taken from the torches mod and applied
      everywhere.
      
      This allows all these items to e.g. be inserted into the `frame`
      mod's item frames.
      78c632eb
  4. Jan 12, 2017
  5. Dec 05, 2016
  6. Nov 22, 2016
  7. Nov 20, 2016
    • Auke Kok's avatar
      Fix whitespace errors to silence luacheck. · 75caa916
      Auke Kok authored
      Currently all minetest_game PR's are failing travis since the
      upstream luacheck now also warns about whitespace issues, and
      there are a few of those in the code. This fixes all of them
      so we can yet again rely on luacheck.
      75caa916
  8. Nov 02, 2016
    • cx384's avatar
      Add and edit fuel registrations · 23ba2d3a
      cx384 authored
      Edited fuels: fences, wooden ladder.
      New fuels:
      boat, paper, book, dry shrub, stick, vessels shelf, wooden tools,
      wooden door, trapdoor, fence gates, farming crops, stairs, slabs, beds.
      23ba2d3a
  9. Sep 07, 2016
  10. Sep 05, 2016
    • paramat's avatar
      Licenses: Change WTFPL to MIT (part 1) · e9d26e2e
      paramat authored
      Part 1: All mods except default and xpanes.
      Add license.txt files.
      Add missing README.txt files.
      Check and update copyright years for all contributors.
      Improve text format and make more consistent.
      e9d26e2e
  11. Jul 27, 2016
  12. Jul 16, 2016
  13. Jul 15, 2016
  14. Jul 13, 2016
  15. Jul 09, 2016
  16. Apr 30, 2016
  17. Apr 04, 2016
  18. Mar 21, 2016
    • Auke Kok's avatar
      Beds: priv/griefing fixes. · da0cc7f6
      Auke Kok authored
      - disallow placing beds in protected areas
      - fix rotation of beds(broken after 41c2b2ae)
      - allow using others' beds, but don't change spawn location
      
      Fixes #953. #943 isn't something I think was ever implemented, and
      this does a fair job of addressing the main concern (spawning in
      others' houses)
      da0cc7f6
  19. Mar 18, 2016
    • Auke Kok's avatar
      Allow both sides of the bed to be digged up. · 41c2b2ae
      Auke Kok authored
      Tested with nodebreaker, fire.
      
      If called from lua, minetest.remove_node() calls on_destruct() callbacks
      before the map is actually updated. This means that we can't look at the
      map data to determine if we're done cleaning up adjacent nodes, and we
      have to stop recursing some other way.
      
      There's no data we can pass around through functions that would survive
      scope to a secondary on_destruct() callback, so we have to maintain
      local state somewhere in the mod namespace.
      
      In this case, we keep a bitflag. The bitflag is set to "true" by
      default. On the first half removal, the flag is flipped and afterwards
      we remove the other half node. When the on_destruct for the other half
      is running, it's value is false and we flip it back to true without
      removing the other half node.
      
      This thus prevents recursing.
      
      To facilitate easier finding of the bed partner, we tell our on_destruct
      whether we're a top or bottom half node through a passed flag.
      
      Now that the top is diggable, we just need to assure that it drops a
      bottom bed part.
      41c2b2ae
  20. Mar 09, 2016
  21. Nov 14, 2015
  22. Oct 20, 2015
  23. Oct 01, 2015
    • paramat's avatar
      Rename to Minetest Game · 8e51f318
      paramat authored
      Rename in game.conf and documentation
      Update game_api.txt documentation for bucket API and tree functions
      Fix tab, space and comment formatting in game_api.txt
      Rename in mod READMEs
      8e51f318
  24. Sep 29, 2015
  25. Sep 15, 2015
  26. Jun 18, 2015
  27. May 14, 2015
  28. Mar 06, 2015
  29. Feb 24, 2015
Loading