Time Nick Message 15:52 MinetestBot 02[git] 04sfan5 -> 03minetest/minetest: Fix script security path normalization in presence of links (#15481) 13a4d1b5b https://github.com/minetest/minetest/commit/a4d1b5b155566cb90961f6b75cf97b3ef21f20f8 (152024-12-03T15:51:34Z) 15:52 MinetestBot 02[git] 04JosiahWI -> 03minetest/minetest: Use `add_compile_options` where appropriate 13818bca6 https://github.com/minetest/minetest/commit/818bca68d1633be775dc8c1a76a9325c03b9d977 (152024-12-03T15:51:53Z) 15:52 MinetestBot 02[git] 04JosiahWI -> 03minetest/minetest: Use CMake `list` directives where appropriate 1303813a5 https://github.com/minetest/minetest/commit/03813a5b5e0b639ff9832148e3f9da34a65674e3 (152024-12-03T15:52:15Z) 15:55 MinetestBot 02[git] 04HybridDog -> 03minetest/minetest: Less explicit memory management in Irrlicht image writer classes (#15… 13a45b04f https://github.com/minetest/minetest/commit/a45b04ffb4c0583ef3c8727ea0f73d40e3662e9d (152024-12-03T15:52:48Z) 17:34 whosit if I want to get a center of the node for some `pos`, is there a better way than doing vector.new(math.floor(pos.x + 0.5), math.floor(pos.y + 0.5), math.floor(pos.z + 0.5)) ? like a library function or something... 17:38 MTDiscord vector.round(v) 17:42 whosit perfect, thank you :) I knew there must be a sane way... 19:02 erle the math.floor thing has a bias? 19:07 ireallyhateirc that way was buggy: https://github.com/minetest/minetest/pull/14757 19:08 ireallyhateirc why reinvent the wheel with a bug