SmallJoker

Results 315 comments of SmallJoker

Markdown rendering could be more appealing to modders, so I am not opposed to this change. Is it possible to prepend some CSS to control the line spacing to fix...

So basically the code should spread the items among same ItemStacks. Current behaviour visualized below (recipe 2): ![lossy_action](https://user-images.githubusercontent.com/1497498/71449251-3dbb4380-2749-11ea-837b-da9e1660fd37.gif) Original MP4: 26 KiB. GitHub-allowed GIF: 147.2 KiB.

This looks like a LuaJIT upstream issue; can't be fixed in Minetest. I suggest migrating the data to `lsqlite` to have a better data management - your database already seems...

Functions: 1) `minetest.serialize` (Lua table) * Implemented in Lua * Rather slow, unusable for large data amounts 2) `minetest.write_json` (Lua table to JSON data) * Implemented in C++ * Rather...

@Lejo1 There's no such thing as "unlimited". The limit is either `SIZE_MAX` (on 64-bit applications usually a 64-bit number) or the maximal file size of your file system. In both...

Please document this feature here: https://github.com/minetest/minetest/blob/master/doc/minetest.6 Also a notice in "Paths" (https://github.com/minetest/minetest/blob/master/README.md#paths) might be helpful - either a general one, or mentioning the command line and environment variable methods. EDIT:...

I totally missed that part about nested directories. Indeed, I agree with @Df458 that the variable should point directly to the user data, and not its parent directory.

You could recursively call `fs::RemoveLastPathComponent` with `fs::IsDir` to determine which directories to create. The switch to C++14 was done recently, and it will again take a while until most of...

@Wuzzy2 I would like to highlight that the focus should be put on server-side entity movement. As mentioned above, little to no difference on client-side is totally expected due to...

#11885 was merged, so I extended the unittests to ensure the following: 1. non-empty ItemStacks in the inventory callbacks (indicates error) 2. correct execution of allow -> take -> put...