Skip to content
Snippets Groups Projects
  1. Jul 16, 2016
  2. Jul 15, 2016
  3. Jun 22, 2016
  4. May 31, 2016
  5. May 28, 2016
  6. May 22, 2016
  7. Apr 30, 2016
  8. Apr 26, 2016
    • Auke Kok's avatar
      TNT: Add on_blast to all nodes with an inventory · 54b87e95
      Auke Kok authored
      Adds a minor helper function that allows efficient retrieval of
      several inventories from a node inventory. We use this helper to
      quickly retrieve the items in chests, vessel shelves, book shelves
      and furnaces, and return these with the nodes itself to the TNT caller.
      
      The TNT caller then performs the entity physics, and we don't need
      to do anything else.
      
      We disable TNT doing anything with bones.
      
      We expose a bug in the code that drops the items - metadata was lost
      entirely. This patch corrects that by properly copying the metadata
      and creating the drops list inclusive metadata.
      54b87e95
  9. Apr 23, 2016
  10. Apr 18, 2016
  11. Apr 16, 2016
    • Auke Kok's avatar
      Change how dirt turns to dirt_with_(something) · 7d93272c
      Auke Kok authored
      This changes how dirt blocks turn to dirt_with -grass, -dry_grass
      or -snow.
      
      Previously, dirt that was sunlit would turn to dirt_with_grass no
      matter what, but this happened without any context, so you could
      get green patches of dirt_with_grass in the middle of a savannah or
      even desert.
      
      Dirt no longer turns to covered dirt unless it's within 1 node from
      another dirt_with_grass or dirt_with_dry_grass or dirt_with_snow.
      This makes dirt_with_grass "growback" a lot slower, since it now only
      happens on the edges, but it retains the context nicely now.
      
      If there is any dirt with a grass or dry grass plant, or snow on top,
      and enough light, we'll convert it sporadically to dirt_with_grass
      or dirt_with_dry_grass or dirt_with_snow.
      
      This allows us to plant grass of our choice in a large dirt patch,
      or in a region where otherwise that type of grass is not present.
      
      This used to be done by 2 abms, but I've combined them in to a single
      ABM that is ordered to run with maximum efficiency, solving for the
      most common outcome first before attempting more complex checks.
      7d93272c
    • Auke Kok's avatar
      Remove "grass under snow" from default:dirt_with_snow in darkness. · 64fe69f3
      Auke Kok authored
      This is technically "dirt with grass" that's just under a snow
      cover, so in darkness the grass on these nodes will also die,
      turning it into dirt.
      
      This doesn't convert dirt_with_snow under snow.
      64fe69f3
  12. Apr 14, 2016
  13. Apr 12, 2016
  14. Apr 08, 2016
  15. Apr 04, 2016
  16. Mar 31, 2016
  17. Mar 26, 2016
  18. Mar 25, 2016
  19. Mar 22, 2016
Loading