Time Nick Message 03:51 a5810 when will the customization of key appear? or, is it fixed forever? 03:53 Yuvi heya 11:43 [MatrxMT] a5810: "Customization of key" in what sense? You can already change keybindings in Settings -> Keyboard and Mouse -> Controls 12:20 MTDiscord AND you can change the mobile layout 13:18 a5810 y5nw, ah yes, i mean, adding more custom keys. 13:30 [MatrxMT] a5810: #12488 13:30 ShadowBot https://github.com/luanti-org/luanti/issues/12488 -- Support custom key binds (with keyboard and touchscreen support) 20:44 MinetestBot 02[git] 04lhofhansl -> 03luanti-org/luanti: Avoid touching all blocks in range every 0.2s (#15878) 13017318f https://github.com/luanti-org/luanti/commit/017318f117d210298b7e7a346cc43c53e3cacd32 (152025-03-08T20:42:50Z) 22:17 Helenah Can privileges be set on other things, for example, a line of code? 22:17 Helenah not just chat commands.. 22:17 sfan5 how would that work? (no) 22:18 Helenah sfan5: I might for example want a player to have access to the command "foo", but not all features of it. 22:18 MTDiscord in your function, check the players privs 22:18 sfan5 well you can go and call a function to check for whatever priv you want, manually 22:18 MTDiscord if play priv do logic else if priv2 do logic else return end 22:19 Helenah use4035, I thought about doing this, yes, just wanted to see if there was a way implemented into the engine, anyway, I guess I'll do that. 22:25 Helenah sfan5, user4035, also, my mind keeps thinking about namespaced privileges until I remember, those don't exist in Luanti. 22:35 Helenah sfan5: Are there any plans to implement a more advanced permissions system? 22:35 sfan5 no 22:36 Helenah sfan5: Are there any plans to implement a more advanced permissions system? 22:37 Helenah Sorry, didn't mean to double send! 22:38 sfan5 answer is still no :) 22:38 Helenah sfan5: But WHY OH WHY OH WHY?! *throws tantrum* 22:38 Helenah sfan5: Has the idea at least been explored? 22:38 sfan5 dunno 22:38 Helenah hmm 22:42 SwissalpS how would a more advanced system look? 22:43 SwissalpS currently you can ask if a set of privs are satisfied by a player. 22:43 SwissalpS seems quite flexible to me 22:51 SwissalpS also luanti allows to add custom privs 23:10 Helenah SwissalpS: Yes, custom privileges, I've been registering, though, I wanted a hierarchical structured format like mod_name:privilege:sub-privilege 23:52 [MatrxMT] What do you need a sub-privileges for? If you are trying to implement something similar to an ACL I would suggest not _solely_ using privileges for custom control. 23:57 SwissalpS { mod_name:priv = true, mod_name:sub-priv = true } 23:58 SwissalpS or even { ["mod_name:priv:sub-priv"] = true } is also possible if you really want