Skip to content
Snippets Groups Projects
  1. Mar 30, 2016
  2. Mar 29, 2016
    • tenplus1's avatar
      stop falling.lua error · e72b8f25
      tenplus1 authored
      2016-03-27 15:47:01: ERROR[Main]: ServerError: Lua: Runtime error from mod '*builtin*' in callback luaentity_Step(): Node name is not set or is not a string!
      2016-03-27 15:47:01: ERROR[Main]: stack traceback:
      2016-03-27 15:47:01: ERROR[Main]: 	[C]: in function 'add_node'
      2016-03-27 15:47:01: ERROR[Main]: 	/usr/share/minetest/builtin/game/falling.lua:96: in function </usr/share/minetest/builtin/game/falling.lua:43>
      e72b8f25
    • kwolekr's avatar
    • sfan5's avatar
      Fix small formatting issue in SRP debug output · 8f43aaf6
      sfan5 authored
      Writing an u8 to verbosestream writes a char, not it's numeric value.
      8f43aaf6
  3. Mar 27, 2016
  4. Mar 25, 2016
  5. Mar 24, 2016
    • Rui's avatar
      Credits: Make that easy to add/remove · 21c47968
      Rui authored
      21c47968
    • Auke Kok's avatar
      Make `options` local here. · 2f640888
      Auke Kok authored
      Undoubtably this may cause problems later if unchecked.
      
      ```
      2016-03-22 21:57:52: WARNING[Server]: Assignment to undeclared global "options" inside a function at .../sofar/git/minetest/bin/../builtin/game/chatcommands.lua:862.
      ```
      2f640888
  6. Mar 21, 2016
  7. Mar 20, 2016
    • ShadowNinja's avatar
      Clean up Strfnd · 93887043
      ShadowNinja authored
      Changes:
        * Fix indentation.
        * Pass strings by const reference.
        * Merge Strfnd and WStrfnd into one class instead of copying them.
        * Remove trailing spaces.
        * Fix variable names.
        * Move to util.
        * Other miscellaneous style fixes.
      93887043
    • ShadowNinja's avatar
      Tweak travis script · eb7db21d
      ShadowNinja authored
      Exit if cd fails and don't insert '\' in string.
      eb7db21d
  8. Mar 19, 2016
    • paramat's avatar
    • Rui914's avatar
      Set acceleration only once in falling node · 65c09a96
      Rui914 authored
      65c09a96
    • paramat's avatar
      Mgv7: Limit pseudorandom caves to surface mapchunk or below · f1aea6b4
      paramat authored
      To avoid bright caves at mapchunk borders when generating mapchunks upwards
      f1aea6b4
    • Auke Kok's avatar
      Allow NodeTimer, ABM and block mgmt interval changes. · c5c727d6
      Auke Kok authored
      ABM's are hardcoded to run every 1.0s, NodeTimers are hard coded to
      run at every 1.0s. Block mgmt is running every 2.0sec.
      
      However, these timers can be better tuned for both higher and lower
      values by server owners. Some server owners want to, and have the
      resources to send more packets per second to clients, and so they
      may wish to send smaller updates sooner. Right now all ABM's are
      coalesced into 1.0 second intervals, resulting in large send queues
      to all clients. By reducing the amount of possible timers, one can
      get a far better response rate and lower the perception of lag.
      
      On the other side of the camp, some servers may want to increase
      these values, which again isn't easily doable.
      
      The global settings abm_interval and nodetimer_interval are set to
      current values by default. I've tested with 0.2/0.5 type values
      and noticed a greatly improved response and better scattering of
      nodetimers, as well as enjoying not faceplanting into doors with
      pressure plates anymore.
      c5c727d6
    • est31's avatar
      lua_api.txt: improve vector documentation · d915ca11
      est31 authored
      Before it rendered very badly in HTML.
      Also point out what vector.round does.
      d915ca11
  9. Mar 16, 2016
    • est31's avatar
      Set EXAMPLE_CONF_DIR to DOCDIR if DOCDIR gets customized · 3132bcb3
      est31 authored
      Before, customisation of DOCDIR did not lead to
      changes of the EXAMPLE_CONF_DIR default value.
      This was inconsistent with expected behaviour
      if you didn't know of the existence of the
      EXAMPLE_CONF_DIR variable. The confusion is
      very strong, as (for not in place builds) both
      DOCDIR and EXAMPLE_CONF_DIR share the same
      default value, it is unexpected that setting
      CUSTOM_DOCDIR changes the location of all
      documentation files but one.
      
      The best meaning of EXAMPLE_CONF_DIR is to
      further allow customization of the mt.conf.example
      storage place, but otherwise keep defaulting to
      whatever DOCDIR is set to, at least for not in
      place builds. This patch implements that
      behaviour.
      
      Fixes #3863.
      3132bcb3
Loading