Skip to content
Snippets Groups Projects
  1. Sep 17, 2015
    • est31's avatar
      Send proper block to old clients for swap_node calls · 94f1e5d9
      est31 authored
      The legacy code added in commit
      
      d879a539 - "Add minetest.swap_node"
      
      for sending the whole mapblock to older clients on the case of a node
      modification with swap_node, had the problem that the block chosen to be
      sent to the client was referenced with node coordinates and not with
      block coordinates, resulting in getting the wrong block sent to the client.
      94f1e5d9
    • kwolekr's avatar
      Ore: Add puff ore type · dcbb9533
      kwolekr authored
      dcbb9533
  2. Sep 16, 2015
  3. Sep 15, 2015
    • est31's avatar
      Disallow placing entities outside safe boundaries · f61f817b
      est31 authored
      Entity positions are serialized as F1000. Disallow placing
      entities outside safe borders with the minetest.add_entity
      call.
      
      Note that this patch only enforces those boundaries for
      placing entities, moving entities that move outside boundaries
      aren't affected.
      
      Thanks to @nanepiwo for pointing this out.
      f61f817b
  4. Sep 14, 2015
    • paramat's avatar
      Firelike drawtype: Improve code · 8e9c9e30
      paramat authored
      Remove unusable fine rotation by param2
      Remove unused and redundant code
      Fix code style issues
      8e9c9e30
    • Rui914's avatar
      Minor tweaks handle_settings_buttons · 620dcddf
      Rui914 authored
      620dcddf
    • est31's avatar
      Fix "make install" and add underscore to doc file name · 8acccf4c
      est31 authored
      Fix regression since commit:
      
      915807f8 "Rename doc/mapformat.txt and update doc to match SRP changes"
      
      And add an underscore to doc file name to make it more readable.
      8acccf4c
    • est31's avatar
      Serialisation: documentation fixes, clarifying renames and whitespace fixes · 283bf97a
      est31 authored
      1. Do two renames:
      	* SER_FMT_CLIENT_VER_LOWEST -> SER_FMT_VER_LOWEST_WRITE
      	* SER_FMT_VER_LOWEST -> SER_FMT_VER_LOWEST_READ
      Now the two define values are consistently named with the _WRITE defines
      SER_FMT_VER_{HIGHEST,LOWEST}_WRITE, and to better point out what the two
      serialisation versions actually are for.
      
      2. wrap some lines in doc/worldformat.txt, and point out that the node
      timers are serialized at a later point, as this can cause confusion about
      what now happens (if one doesn't strictly read the if block's conditions).
      
      3. some whitespace fixes in NodeTimerList::serialize, and one new comment.
      283bf97a
    • est31's avatar
      Rename doc/mapformat.txt and update doc to match SRP changes · 915807f8
      est31 authored
      The documentation file contains not just information about the
      map itself, but also about further files inside the world's
      directory.
      
      Documentation didn't reflect recent SRP addition, now it does.
      915807f8
  5. Sep 13, 2015
    • kwolekr's avatar
      Ore: Add ore sheet column height range selection · beba9694
      kwolekr authored
      Modders are now able to select the range of ore column height,
      and the midpoint at which they 'grow' starting from.
      This commit adds three new parameters for the 'sheet' ore type:
      column_height_min, column_height_max, and column_midpoint_factor.
      clust_size is now deprecated for this ore type.
      beba9694
  6. Sep 12, 2015
  7. Sep 10, 2015
    • est31's avatar
      networkprotocol.h: remove "u16 command" from doc · 64a5eec1
      est31 authored
      Its obvious that "u16 command" is inside every packet, therefore this
      commit removes all mentions of the command, if non-array like notation
      is used. We already didn't add "u16 command" to new packets or removed
      it at packet changes, so now we remove it from existing packets.
      64a5eec1
    • est31's avatar
      Improve locale directory detection · 2a9da62b
      est31 authored
      Use in-place locale directory if that exists, and
      static one (RUN_IN_PLACE or CUSTOM_LOCALEDIR) doesn't exist.
      Report to errorstream if neither static nor in-place locale
      dirs exist, and report successfully found paths to infostreem.
      
      Fixes two bugs:
      
      -> Regression of commit [1] where if we use RUN_IN_PLACE=false,
      	but don't make install, locales aren't found. One might
      	think this is no regression, as its no bug, but all other
      	paths (mainmenu, etc.) are detected properly.
      -> Regression of commit [1] where locales don't work on windows.
      
      References:
      [1]: Commit 645e2086 "Use CUSTOM_LOCALEDIR if specified" by @ShadowNinja
      2a9da62b
  8. Sep 08, 2015
Loading