- May 13, 2016
-
- May 12, 2016
-
-
Rui authored
Bug and whitespace error fixed (Zeno)
-
- May 09, 2016
-
-
est31 authored
-
- May 01, 2016
-
-
Rui authored
-
- Apr 29, 2016
-
-
paramat authored
Correct parameter names mg_valleys to mgvalleys Remove biome NoiseParams from MapgenValleysParams Improve format of parameter code
-
- Apr 28, 2016
-
-
tenplus1 authored
-
Jean-Patrick Guerrero authored
-
rubenwardy authored
-
SmallJoker authored
-
- Apr 22, 2016
-
-
Nathanaëlle Courant authored
Also, fix a nil error that can happen sometimes in menu_handle_key_up_down
-
- Apr 21, 2016
- Apr 20, 2016
-
-
Jean-Patrick Guerrero authored
-
Jean-Patrick Guerrero authored
-
Auke Kok authored
This seems very little cost and matches the old behavior more closely. This will cause some more falling nodes to get added to falling clusters. With the efficiency of the algorithm, this really doesn't do much damage.
-
- Apr 15, 2016
-
-
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"
-
SmallJoker authored
Apply de morgan to simplify the logic.
-
- Apr 14, 2016
-
-
TriBlade9 authored
Setting only loaded once, default value is to enable them.
-
- Apr 11, 2016
-
-
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.
-
- Apr 08, 2016
-
-
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
-
- Mar 31, 2016
-
-
Rui914 authored
Additionally, fix misc. code style issues
-
- Mar 30, 2016
-
-
paramat authored
-
- Mar 29, 2016
-
-
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>
-
- Mar 25, 2016
-
- Mar 24, 2016
- Mar 19, 2016
-
-
paramat authored
-
Rui914 authored
-
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.
-
- Mar 15, 2016
-
-
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.
-
- Mar 12, 2016
-
-
Diego Martínez authored
-
- Mar 11, 2016
-
-
paramat authored
-
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.
-
- Mar 09, 2016
-
-
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.
-
- Mar 07, 2016
-
-
ShadowNinja authored
-
est31 authored
-
Jean-Patrick Guerrero authored
-
Rui914 authored
-
- Mar 05, 2016
-
-
srfqi authored
Missing `valleys` in `settingtypes.txt` and `minetest.conf.example`.
-
Jean-Patrick Guerrero authored
-