Skip to content
Snippets Groups Projects
  1. Apr 04, 2016
  2. 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
  3. 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
  4. Mar 09, 2016
  5. Nov 14, 2015
  6. Oct 20, 2015
  7. 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
  8. Sep 29, 2015
  9. Sep 15, 2015
  10. Jun 18, 2015
  11. May 14, 2015
  12. Mar 06, 2015
  13. Feb 24, 2015
Loading