Time Nick Message 03:29 * Copenhagen_Bram slaps kimapr around a bit 11:55 [MatrxMT] I noticed that there's no "voice chat" mod. Is it because minetest api don't provide an API to use microphone? 11:56 [MatrxMT] correct, there's no API for the microphone 11:56 [MatrxMT] there is a CSM for mumble though https://forum.luanti.org/viewtopic.php?f=53&t=21586 11:56 [MatrxMT] well, to place the sounds from an external program into correct stereo positioning 15:06 pgimeno I'm trying to change the collisionbox with: core.register_on_joinplayer(function(player) player:set_properties({collisionbox={...}}) end) but it's not working, any idea why? I'm using Minetest Game if that matters 15:10 pgimeno the code does execute (adding a log shows that) but the collision box doesn't change 15:12 [MatrxMT] try putting the `player:set_properties` in a `core.after(0, )` 15:12 [MatrxMT] it probably doesn't work because the player is not initialized yet (or something similar) 15:16 pgimeno that did it, thanks! 15:18 kimapr Oh i've been slapped here apparently 18:18 MTDiscord kimapr what did we tell you about walking into the irc? 18:18 MTDiscord Nothing actually, please continue 18:18 kimapr what? 18:19 kimapr i didn't walk into the irc, i got summoned 18:24 [MatrxMT] \/summon kimapr 18:24 kimapr real... 22:44 luatic pgimeno: another mod such as MTG's player_api is likely overwriting it. core.after(0, ...) is a dirty hack that sidesteps the issue on join, but player_api may still overwrite it later on. i would recommend looking at MTG's game_api.txt to see how to deal with player_api.