Skip to content
Snippets Groups Projects
  1. Feb 25, 2017
    • paramat's avatar
      Lavacooling: Return to chance = 2 · d5f1f964
      paramat authored
      Return to previous parameters interval = 1, chance = 2.
      Compensates for the increase in default active block radius.
      Large amounts of lava cooling at once is known to overload sound
      creation, producing error messages.
      d5f1f964
    • paramat's avatar
      Torches: Reduce light source level from 13 to 12 · 1ec31d84
      paramat authored
      As part of the original plan for a new lightcurve.
      
      With the old lightcurve lights were so dim all light sources had light
      source level 13 or 14 to compensate, resulting in almost no difference
      between torchlight and a maximum brightness light.
      
      The new lightcurve makes all light sources effectively much brighter by
      spreading visually-bright light further, torches are now slightly too
      bright. So now we can reduce the light source level of torches while
      actually making them effectively brighter than with the old lightcurve.
      This also creates a desirable difference between torchlight and a
      maximum-brightness light source.
      1ec31d84
    • MarkuBu's avatar
      Leafdecay: Node timer based implementation, API · 60e5b299
      MarkuBu authored
      This implements a node-timer based leafdecay mechanism, and exposes
      an API to use it in mods.
      
      The API is documented in game_api.txt.
      
      `default.register_leafdecay(leafdecaydef)`
      
      `leafdecaydef` is a table, with following members:
      {
      	trunks = { "default:tree"}, -- nodes considered trunks
      	leaves = { "default:leaves", "default:apple"}, -- nodes considered leaves
      	radius = 3, -- activates leafdecay this far from the trunk
      }
      
      The algorithm will drop `leaves` items in the area if no `trunks` are found
      in the `trunk_radius` sized area around the position of the leaf. If a node
      listed in `leaves` has a group `leafdecay_drop > 0`, then the item is dropped,
      otherwise the item is removed but not dropped.
      
      The algorithm also implements a value `default.leafdecay_speed` (default
      15) which can be modified to increase or decrease of the leaf decay. The
      algorithm will vary the actual speed a bit to introduce randomness.
      
      Leaf decay is randomized by 0.1 seconds to reduce the chance that
      decay happens many times on the same second interval. This requires
      nodetimer_interval to be set to values lower than 1.0 to have an
      effect.
      
      The leaves will decay between 2 and 10 seconds after digging the trunk,
      and happen at non-integer second intervals.
      
      -- The API was added by sofar.
      60e5b299
  2. Feb 21, 2017
  3. Feb 12, 2017
  4. Feb 11, 2017
  5. Feb 09, 2017
  6. Feb 02, 2017
    • paramat's avatar
      Mapgen: Dedicated registrations for mgv6 blob ores · 2e950ac6
      paramat authored
      Now that biomes are being specified for blob ores we need a separate
      set of blob ore registrations for mgv6 which has no Biome API biomes
      defined.
      Various minor improvements to mapgen.lua.
      2e950ac6
  7. Feb 01, 2017
  8. Jan 27, 2017
  9. Jan 26, 2017
  10. Jan 22, 2017
  11. Jan 20, 2017
  12. Jan 16, 2017
    • Auke Kok's avatar
      Revert "Doors: Remove ..." and "Doors: Allow the screwdriver to ..." · 6dcf541f
      Auke Kok authored
      This reverts commit 5e4a6e8a, and
                   commit 60cf3f85.
      
      The original door API rewrite I posted had all rotation disabled using
      the correct on_rotate() handler returning `false`. Two subsequent
      changes attempting first to enable simple rotation and second disabling
      that again changed the callback handler to a boolean `false`, which
      is incorrect use in the screwdriver API, and actually allows rotation.
      
      The proper way to disable rotation for facedir nodes it to use a full
      callback handler that does `return false`.
      6dcf541f
  13. Jan 15, 2017
  14. Jan 12, 2017
    • Baptiste Pouget's avatar
      Add support for custom bed sounds · 57eb9060
      Baptiste Pouget authored
      57eb9060
    • Auke Kok's avatar
      Dye: Simplify recipes. · df19b4ea
      Auke Kok authored
      Create a simple triplet table (src1, src2, dst) for all the dye
      recipes and group them logically, with a bit of explanation where
      they actually come from.
      
      This prunes a lot of recipes from the list, but the old list had a
      ton of combinations that did not make any sense, as well as recipes
      that were just gross approximations and duplicates, mixing the same
      color with itself just to get the same color back, which just wastes
      packets at logon.
      
      The list has been checked to allow all colors created from the basic
      dyes (flowers+coal) so that all colors can be crafted.
      df19b4ea
  15. Jan 07, 2017
  16. Jan 03, 2017
  17. Jan 02, 2017
  18. Dec 21, 2016
  19. Dec 17, 2016
    • paramat's avatar
      Sounds: Edit some sound gains, mostly footsteps · 12b15419
      paramat authored
      I recently made glass footstep and dig gains too low, raise slightly.
      Change dirt dug gain from above-maximum 1.5 to maximum 1.0.
      Reduce gain of footsteps: stone, dirt, gravel, wood, metal
      Raise gain of leaves footstep.
      12b15419
    • Auke Kok's avatar
      Furnace: Attempt to fix exploits · e5c5c263
      Auke Kok authored
      The fuel would remain active even if source went empty, giving
      free cook time to newly inserted items. This patch is supposed
      to stop this.
      e5c5c263
  20. Dec 13, 2016
    • paramat's avatar
      Default: Add missing 'default_dig_snappy' sound · 55a16cd2
      paramat authored
      Some nodes with the snappy group (wool, glass pane, seeds) were missing
      sound when dug with a sword.
      Adding the sound causes it to be used for glass pane, so define a 'dig'
      sound in the 'node sound glass defaults' table, use the footstep sound.
      Adding the sound also causes it to be used for seeds which deliberately
      have no dig sound, so add an empty sound override for seed dig.
      
      Reduce the gain of the glass footstep sound which was excessively loud.
      
      Add some freesound members to license.txt.
      55a16cd2
  21. Dec 07, 2016
    • paramat's avatar
      Carts: Stronger handbrake · 3e585299
      paramat authored
      Handbrake was barely noticeable and fairly useless.
      Equalisng with brake rail deceleration makes it more intuitive to use
      and easier to judge stopping distance.
      3e585299
Loading