Skip to content
Snippets Groups Projects
  1. May 13, 2016
    • est31's avatar
      Mainmenu: don't show change keys dialog on android · ec15e35a
      est31 authored
      The change keys dialog can't be left. It doesn't make
      much sense to show it on Android in the first place,
      therefore disable it, just like commit
      
      aed70cb0 'Disable sound and key binding settings in "pause" menu on android'
      
      has disabled it for the esc menu.
      
      Fixes #4115.
      ec15e35a
  2. May 12, 2016
  3. May 09, 2016
  4. May 01, 2016
  5. Apr 29, 2016
  6. Apr 28, 2016
  7. Apr 22, 2016
  8. Apr 21, 2016
  9. Apr 20, 2016
  10. Apr 15, 2016
    • est31's avatar
      Mainmenu: Still support favorites if send_pre_v25_init is disabled · bc4dc80c
      est31 authored
      @SmallJoker has noted a bug that servers from the (local) main menu
      favorites list can't be opened.
      
      This commit fixes the bug by disabling any main menu based protocol
      checks for servers from the favorite list.
      
      Also, it fixes a second bug that happens when a server from the
      public serverlist doesn't send its supported protocol versions,
      most likely because its running a minetest older than commit [1].
      Then we have shown an error msg that the server has enforced
      one specific protocol version. This was most likely not the case.
      
      Of course, we can't do anything better than do an assumption on
      the protocol versions if they are not known. That assumption
      should however be closest to the most often occuring case as
      possible.
      
      Also, some little cleanups.
      
      [1]: 5a0ed780 "Server: announce MIN/MAX protocol version supported to serverlist. Client: check serverlist"
      bc4dc80c
    • SmallJoker's avatar
      mainmenu: Tidy up logic in is_server_protocol_compat() (#3997) · d82c5da0
      SmallJoker authored
      Apply de morgan to simplify the logic.
      d82c5da0
  11. Apr 14, 2016
  12. Apr 11, 2016
    • Auke Kok's avatar
      Convert nodeupdate to non-recursive · d7908ee4
      Auke Kok authored
      This took me a while to figure out. We no longer visit all 9 block
      around and with the touched node, but instead visit adjacent plus
      self. We then walk -non- recursively through all neigbors and if
      they cause a nodeupdate, we just keep walking until it ends. On
      the way back we prune the tail.
      
      I've tested this with 8000+ sand nodes. Video result is here:
      
        https://youtu.be/liKKgLefhFQ
      
      Took ~ 10 seconds to process and return to normal.
      d7908ee4
  13. Apr 08, 2016
    • Rui914's avatar
      Mainmenu: Refactor tab UI code · 92d4a738
      Rui914 authored
       - Use local variables for tabs in place of globals
       - Merge together if statements where possible
       - Replace manual table searching code with indexof where possible
      92d4a738
  14. Mar 31, 2016
  15. Mar 30, 2016
  16. 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
  17. Mar 25, 2016
  18. 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
  19. Mar 19, 2016
    • paramat's avatar
    • Rui914's avatar
      Set acceleration only once in falling node · 65c09a96
      Rui914 authored
      65c09a96
    • 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
  20. Mar 15, 2016
    • est31's avatar
      Add option to not send pre v25 init packet · af301831
      est31 authored
      The legacy init packet (pre v25) sends information about the client's
      password that a server could use to log in to other servers if the
      username and password are the same. All the other benefits of SRP of
      protocol v25 are missed if the legacy init packet is still sent during
      connection creation.
      
      This patch adds an option to not send the v25 init packet. Not sending
      the v25 packet means breaking compat with pre v25 servers, but as the
      option is not enabled by default, no servers are affected unless the
      user explicitly flips the switch. More than 90% of the servers on the
      serverlist support post v25 protocols.
      
      The patch also fixes a bug with greying out of non compliant servers
      being done wrongly, the min and max params were mixed.
      af301831
  21. Mar 12, 2016
  22. Mar 11, 2016
    • paramat's avatar
    • Auke Kok's avatar
      Introduce "protection_bypass" privilege. · f627ef39
      Auke Kok authored
      This privilege allows map protection bypassing for server operators
      and world moderators.
      
      Initially I had thought that bypassing protection mods would have been
      something that could entirely be done inside mods and minetest_game,
      but the concept of protection is defined in core, in the code of
      core.is_protected().
      
      I don't feel that it would be logical to introduce a protection
      concept in core, but not some way around that for server operators
      to maintain map parts that need fixing, de-griefing or cleanup.
      
      Others had noticed the same problems, and proposed a patch to
      minetest_game. That patch is fine by itself, but it fails to add
      protection bypass functionality for digging normal nodes and placing
      nodes.
      
      So, instead, we indroduce the new priv "protection_bypass" in core,
      and modify 'on_place_node' and 'node_dig' to allow bypassing node
      protections if the player holds this priv.
      
      This priv was tested with protector redo by tenplus1.
      
      A followup patch to Minetest Game will include allowing special checks
      for doors, trapdoors, chests in Minetest Game.
      
      Protection mods will likely want to mimic the changes in their relevant
      code sections.
      f627ef39
  23. Mar 09, 2016
    • Auke Kok's avatar
      Add consistent monotonic day counter - get_day_count() · 4e59fcf5
      Auke Kok authored
      I've written several experimental bits of code that revolve around the
      need for a consistent calendar, but implementing one is extremely hard
      in mods due to time changes and mods overriding core.get_timeofday(),
      which will conflict.
      
      The second part of the problem is that doing this from a mod requires
      constant maintenance of a settings file.
      
      An implementation in core is trivial, however, and solves all of
      these problems at virtually no cost: No extra branches in server
      steps, and a single branch when minetest.set_time_of_day(), which is
      entirely reasonable.
      
      We store the day_count value in env_meta.txt.
      
      The use case is obvious: This change allows mods to create an actual
      virtual calendar, or properly account for seasonal changes, etc..
      
      We add a "/days" chatcommand that displays the current day count. No
      permissions are needed. It can only retrieve the day count, not
      modify it.
      4e59fcf5
  24. Mar 07, 2016
  25. Mar 05, 2016
Loading