Time Nick Message 02:41 asdflkj_sh is it possible to map placing blocks to a keyboard key, or better left click + alt? 02:43 asdflkj_sh I've been playing minetest on a laptop with the trackpad and am wondering if it would be playable with an old single-button https://en.wikipedia.org/wiki/Apple_USB_Mouse I found 02:45 MTDiscord I dont think so. However, you could write a python script to change your keybindings for your system (record and simulate key and mouse events) 02:46 asdflkj_sh I might just resort to sxhkd/xbindkey and xdotool (no need to write python) 02:47 MTDiscord yeah tahtd work I only know about python scripting for it 02:47 MTDiscord I have a modding issue: I want to serialize a table that contains a list of ItemStacks... im trying to save the data from a detached inventory across server restarts, and im saving it in a subtable of a datastructure that I am already saving to modstorage anyways. It keeps giving me the error "cant serialize userdata" 02:52 MTDiscord how do I serialize userdata? 02:56 MTDiscord its an itemstack im trying to save... I could store them as strings... 02:57 MTDiscord but I need to store the meta also 02:59 MTDiscord does itemstack:to_table() save the metadata? 03:17 MTDiscord Ill be afk for bed but will come back to read later so please help when you can 10:16 mazes_83 for model[ in formspec, which version introduces animation_speed ? 12:37 MinetestBot 02[git] 04Wuzzy2 -> 03minetest/minetest: Add get_server_max_lag() (#11671) 134fca601 https://git.io/JVZJe (152021-10-05T12:35:55Z) 12:39 MinetestBot 02[git] 04TurkeyMcMac -> 03minetest/minetest: Make MetaDataRef:get return nil instead of nothing (#11666) 135aa95fe https://git.io/JVZLq (152021-10-05T12:38:33Z) 16:58 MTDiscord Can anyone help with my problem:I have a modding issue: I want to serialize a table that contains a list of ItemStacks... im trying to save the data from a detached inventory across server restarts, and im saving it in a subtable of a datastructure that I am already saving to modstorage anyways. It keeps giving me the error "cant serialize userdata" 16:58 MTDiscord its an itemstack im trying to save... I could store them as strings... 16:58 MTDiscord but I need to store the meta also 16:59 MTDiscord does itemstack:to_table() save the metadata? 17:04 jonadab Maybe look at what the digtron crate does, particularly with digtron storage inventories? 17:06 sfan5 you need to turn itemstacks into strings first 17:10 jonadab Or wait, also look at what Unified Inventory does with players' bags. 19:54 MinetestBot 02[git] 04Wuzzy2 -> 03minetest/minetest: Fix crash when calling remove/kick/ban_player on start (#11672) 13bc71622 https://git.io/JVaR7 (152021-10-05T19:53:47Z) 19:54 MinetestBot 02[git] 04lhofhansl -> 03minetest/minetest: Reduce shadow jitter (#11668) 13b4b9bee https://git.io/JVaRF (152021-10-05T19:54:01Z) 19:56 MinetestBot 02[git] 04HybridDog -> 03minetest/minetest: List only jpg and png as screenshot format options (#11675) 1353e126a https://git.io/JVa2q (152021-10-05T19:54:13Z) 22:16 MTDiscord Ok thx. I guess turning an itemstack into a string keeps the metadata? 22:17 sfan5 yes 23:12 MTDiscord Great that makes things easy