SmallJoker
SmallJoker
Hacky solution ("duck and cover"): 1. Assign a new field `node.__call_depth` in `default.dig_up` 2. Modify the original `minetest.node_dig` to use `table.copy(node)` instead of the selected field copy 3. Carry over...
I agree that the current texture is not so good because they are simply recycled from the other plank textures. They could benefit from some darker patches, noise and cuts...
Would it solve your problem if player_api registered its `on_leaveplayer` callback within `minetest.register_on_mods_loaded`? That would put move it to the end of the table, effectively calling it after all other...
(after requested in IRC) I can confirm that OpenGL 2 still works (also with shaders) on Ubuntu/Linux, 64-bit. SDL2 / OpenGL 3 / OpenGL ES support not enabled.
I have run into this issue as well with the following code using SFML 2.5.1 on Linux (64-bit). `L"だш들러` works but `"だш들러"` shows placeholder icons (invalid unicode symbols). Sample code...
Minetest has an internal profiler: * Settings to enable it: https://github.com/minetest/minetest/blob/335af393f09b3629587f14d41a90ded4a3cbddcd/builtin/settingtypes.txt#L1734-L1762 * Chat command to export: https://github.com/minetest/minetest/blob/335af393f09b3629587f14d41a90ded4a3cbddcd/builtin/profiler/init.lua#L45-L46 According to `mesecons/actionqueue.lua`, the actions are executed each globalstep, thus you should see...
This is either an engine issue or a division error in a mod. Areas just happens to be a victim of this - all that could be done is to...
@alek13 The PR currently waits on your feedback on the suggestions above. Feel free to reject such that are not justified so that we can proceed with this PR towards...
Please specify the API function to overwrite. Protection mods have no control about entity placement and rely on calls from (or to) the mob mod's API.
@wsor4035 Does this fix your issue? ``` diff --git a/api.lua b/api.lua index e6fe90e..816d687 100644 --- a/api.lua +++ b/api.lua @@ -84,6 +84,9 @@ end -- Checks if the area is unprotected...