| Commit message (Collapse) | Author | Age |
|
|
|
| |
Treegen: Remove alias checks from jungletree generation for speed
|
| |
|
|
|
|
|
| |
-> remember the previously loaded serverlist, and use if new one failed
-> show a "loading" serverlist
|
|
|
|
| |
Update simple biomes. Cleanup code
|
|
|
|
|
|
| |
* abort if theres no active timer
* only reduce the timer.time of all timers when its necessary
* move updating timers_to_add into a seperate function
|
| |
|
|
|
|
|
| |
If you run minetest with valgrind, you'll quickly notice uninitialized jump
depend error messages that point to s_base.cpp:131. This commit fixes those.
|
|
|
|
|
|
|
|
|
|
| |
Now logs
ACTION[ServerThread]: player sets time to 6:03
instead of
ACTION[ServerThread]: player sets time to 6:3
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
Spare direct multoplication, use constant MapBlock::nodecount instead of
local nodecount variables.
Also use strides at one place instead of multiplications.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
ObjectRef:
get_properties
get_armor_groups
get_animation
get_attach
get_bone_position
Players:
get_physics_override
hud_get_hotbar_itemcount
hud_get_hotbar_image
hud_get_hotbar_selected_image
get_sky
get_day_night_ratio
get_local_animation
get_eye_offset
Global:
minetest.get_gen_notify
minetest.get_noiseparams
|
|
|
|
|
| |
Parent commit broke behaviour.
Thanks @TeTpaAka for testing the fix.
|
| |
|
|
|
|
| |
0.5 persistence for humidity
|
|
|
|
|
|
| |
Use v arrows except where there is only one line between two boxes,
and other improvements
(Yea could use ↓ but its an ASCII art not an Unicode art).
|
| |
|
|
|
|
| |
-192 for mgv5 deep oceans. Improve code
|
|
|
|
| |
Also fix a startup error caused by s_security.cpp
|
|
|
|
| |
Thanks to @UltimateNate for pointing this out :)
|
|
|
|
|
| |
This allows newer versions to add additional information that isn't
read by us, but still in a backwards compatible manner.
|
| |
|
|
|
|
|
|
| |
Also, clean up surrounding code style
Replace by-value parameter passing with const refs when possible
Fix post-increment of iterators
|
| |
|
|
|
|
| |
libstdc++ doesn't include <cstring> inside of <string>, unlike libc++.
|
| |
|
|
|
|
|
| |
Its a possible mistake to log in to a server with twice the same name.
Before, it triggered a server wide error message, now it logs to actionstream.
|
|
|
|
|
| |
Work around irrlicht bug and hide nametag if its alpha is set to 0.
Thanks @TeTpaAka for pointing out workaround.
|
|
|
|
| |
Specifically, the added rule matches .kate-swp files.
|
|
|
|
|
|
|
|
| |
Commit 11a96e4901ce54c4646e47866f7a66cd9034c16b
commented out version parsing, resulting in the version byte being parsed as part of the color,
making nametags dark grey.
Re-introduces version parsing and ignores the packet if the version is more recent than ours,
fixing the unused variable warning (should have been done anyway).
|
|
|
|
| |
NodeDefManager
|
|
|
|
|
| |
This improves performance of MapBlock::raiseModified by a factor of 6.
Also, clean up mapblock.h a bit and inline small functions.
|
|
|
|
|
|
| |
This adds the ability to grab 'slices' of noise calculated by PerlinNoiseMap.
Retrieving smaller slices of noise from the computation result as needed
optimizes memory usage while maintaining a reasonable amount of CPU overhead.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
warnings
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Due to compatibility concerns, this is temporarily disabled.
|
|
|
|
|
| |
* The time command now accepts parameters in the form <hour>:<minute>,
and if invoked with no parameters returns the current time in said format.
|
|
|
|
| |
Also rename method to better match what it does.
|