Time Nick Message 18:53 Nick01 hello! 19:03 sfan5 hi 19:10 GNUHacker sup? 20:37 Extex Ok so, using vector.rotate with a rotation of {x=90, y=0, z=45} and an offset of {x=1, y=1, z=1}, I want it so when this rotated vector intersects with a node it will rotate it so it just doesn't intersect. 20:37 Extex Sort of like an inverse vector.rotate 20:38 Extex Think of it like a cube, and when one edge of a cube hits a flat surface it will rotate so it doesn't enter the other 20:41 Extex Or like a stick, the start is 0, 0, 0 and the end is the vector.rotate coordinates, when the end touches a flat surface it will rotate slightly so it doesn't intersect 22:06 AristotIe how can I compile minetest with ncurses? 22:07 snowhawk maybe ;) 22:07 snowhawk but what do i know.. 22:07 AristotIe well, I know it's possible, I just don't know how 22:07 snowhawk me either 22:07 snowhawk lol 22:07 AristotIe heh 22:07 snowhawk i want to play MC/MT in VR 22:07 snowhawk Discovery Lite doesnt work 22:08 sfan5 AristotIe: I assume -DENABLE_CURSES=1 should do it 22:10 AristotIe well 22:10 AristotIe I tried that and when I use --terminal it says something like "excluding --terminal as ncurses is not there" 22:10 AristotIe lemme go run that again to find the actual issue 22:12 AristotIe oh, wait 22:12 AristotIe hmm 22:12 AristotIe I'm gonna need to recompile that 22:53 AristotIe ok, finally 22:54 AristotIe so I compiled it like so: 22:54 AristotIe $ cmake . -DENABLE_CURSES=1 22:54 AristotIe $ make -j$(nproc) 22:56 AristotIe and then ran "./minetest/bin/minetest --server --terminal --name Aristotle --worldname world1" and it said "ERROR[Main]: Cmd arg --terminal passed, but compiled without ncurses. Ignoring." and then continued to start the server normally without the --terminal functionality 23:02 AristotIe (this is a minetest 5.5.0 dev build) 23:25 MTDiscord Is ncurses installed? 23:25 MTDiscord CMake will not error out if it isn't installed, but will silently ignore it instead. 23:30 AristotIe yeah, I was just looking in to that, is libncurses-dev available for armhf? 23:43 MTDiscord That I don't know. 23:44 AristotIe I just figured it out, yep, it wasn't installed, and I'm assuming that was the problem, thx for the help