Time Nick Message 11:14 Zughy Heyo. I don't understand that "mode" variable what's referring to. Does anyone know? https://github.com/minetest/minetest/blob/master/builtin/client/register.lua 11:16 zughy[m] Matrix test 11:21 sfan5 https://github.com/minetest/minetest/blob/4361bfcb4da0b6f9de74c7de9f2d08084877713e/src/script/common/c_internal.h#L81 13:09 Wuzzy #9294 13:09 ShadowBot https://github.com/minetest/minetest/issues/9294 -- Add callbacks for falling and attached nodes by Wuzzy2 13:16 sfan5 huh didn't I approve that already? 13:17 MTDiscord Well it already has one approval, so you could just merge it 13:19 sfan5 ah no that was a different one 15:25 rubenwardy merging #10464 in 10 15:25 ShadowBot https://github.com/minetest/minetest/issues/10464 -- Pass ContentFeatures as reference to read_content_features. by JosiahWI 16:12 lhofhansl Planning to merge #10489 in a bit. 16:12 ShadowBot https://github.com/minetest/minetest/issues/10489 -- Avoid drawing invisible blocks on the client. by lhofhansl 16:31 lhofhansl Done. 16:40 MTDiscord lol Rubenwardy removed my punctuation mark on the end of my PR name. 16:46 rubenwardy Only Android Studio can bring my battery down from 40% to 4$ 16:48 zughy[m] oh, so now it's worth something? I might try that too, free money 19:11 rubenwardy merging #10480, #10483, and #9927 in 10 19:11 ShadowBot https://github.com/minetest/minetest/issues/10480 -- ObjectRef:get_children() by Zughy 19:11 ShadowBot https://github.com/minetest/minetest/issues/10483 -- Fix float argument check in minetest.set_timeofday() by Zughy 19:11 ShadowBot https://github.com/minetest/minetest/issues/9927 -- [NO SQUASH!] Android: Github Actions, get deps as a zip archive by MoNTE48 22:55 paramat merging #10468 #10484 22:55 ShadowBot https://github.com/minetest/minetest/issues/10468 -- Document how to work with ClangFormat by paramat 22:55 ShadowBot https://github.com/minetest/minetest/issues/10484 -- Devtest hand: Update capabilities, add creative mode capabilities by paramat 23:00 hecks So how hard would it be to give ItemStack meta a private flag like nodes have? 23:01 hecks I understand that meta is used to control whether something is stackable, must this be known to the client? 23:03 rubenwardy you could introduce a hash for that 23:04 rubenwardy I believe the issue is that itemstacks are serialized in the same way for networks and for storage 23:04 rubenwardy so you'd need to separate that 23:48 hecks I am trying to find the part where it checks the meta client side in the form, because it obviously does, but can't 23:48 hecks guiFormSpecMenu.cpp:4268 is where add/swap is decided 23:50 hecks oh, is it possibly in ItemStack::addItem 23:52 hecks and there, the meta is straight up compared with != 23:53 hecks one could use a hash instead, but hashes collide