Time Nick Message 00:41 MinetestBot 02[git] 04paramat -> 03minetest/minetest: Mirror 'sunrisebg' texture to fix chopped right edge (#7935) 136f42605 https://git.io/fpiWB (152018-12-04T00:39:30Z) 04:21 Ruslan1 marisag: 11:31 MinetestBot 02[git] 04lblot@infopro-digital.com -> 03minetest/minetest: Fix uninitialized variable peer_id 13b753ec4 https://git.io/fpi5M (152018-12-04T11:27:53Z) 11:33 MinetestBot 02[git] 04lblot@infopro-digital.com -> 03minetest/minetest: Fix a stringop-truncation GCC warning 136e22b20 https://git.io/fpi5x (152018-12-04T11:32:41Z) 11:42 MinetestBot 02[git] 04nerzhul -> 03minetest/minetest: Fix a stringop-truncation GCC warning 137f545db https://git.io/fpid1 (152018-12-04T11:39:19Z) 11:42 MinetestBot 02[git] 04nerzhul -> 03minetest/minetest: Fix uninitialized variable peer_id 1339ea1cd https://git.io/fpidM (152018-12-04T11:39:10Z) 15:01 MinetestBot 02[git] 04nerzhul -> 03minetest/minetest: Fix another GCC warning 13e681118 https://git.io/fpP3r (152018-12-04T14:57:50Z) 15:12 scr267 Waow this is cool. You get automated commit notifications pushed to the IRC channel? 15:12 scr267 nice 15:21 MinetestBot 02[git] 04nerzhul -> 03minetest/minetest: Add testWrapDegrees_0_360_v3f unittests 1375a26b1 https://git.io/fpPcs (152018-12-04T15:18:17Z) 15:47 MinetestBot 02[git] 04nerzhul -> 03minetest/minetest: Revert "Fix another GCC warning" 13b362e04 https://git.io/fpPla (152018-12-04T15:45:07Z) 18:13 MinetestBot 02[git] 04nerzhul -> 03minetest/minetest: Update android version code (rebuild) 13ae8d14b https://git.io/fpPPI (152018-12-04T18:13:06Z) 19:39 MinetestBot 02[git] 04SmallJoker -> 03minetest/minetest: Send only changed node metadata to clients instead of whole mapblock … 133d66622 https://git.io/fpPQe (152018-12-04T19:37:48Z) 21:22 Xiong Are all these crappy *craft games in Play Store just junky mt forks? 21:23 sfan5 most 21:41 Alexand{er|ra} Is there something that can be used like a sleep() function in a Minetest function? minetest.after() won't work for this, as the nested calls to it would get way too deep. 21:42 rubenwardy sounds like you want coroutines 21:42 rubenwardy coroutines are pausable and resumable functions 21:42 rubenwardy so you could make something like run_coroutine(func, 1) and it will run the co-routine, and use a minetest.after(1) everytime it pauses 21:43 Alexand{er|ra} That's a bit awkward, but it should do the trick. Thanks, rubenwardy! 21:43 rubenwardy a sleep wouldn't work as Minetest is callback based, so you'd halt everything 21:44 rubenwardy you could maybe make a function which calls yield for you, and resumes in an after, actually 21:44 Alexand{er|ra} Oh, ouch. Yeah, don't want to halt *everything*. 21:56 Alexand{er|ra} Well that was stupid. I had my greater than/less than sign flipped around the wrong way, so my code didn't run at all. 21:58 Alexand{er|ra} Perfect. Now my character will pop around the map while I'm away, and run my tests for me so I can run errands instead. 21:59 Alexand{er|ra} Thanks again for the help, rubenwardy! 22:01 rubenwardy :D 22:01 rubenwardy yw 23:09 Xiong Vision of mob mod spawning fake players zipping around madly chopping blocks, digging holes, and assembling meaningless ziggurats. 23:26 Alexand{er|ra} Drats. Testing's not done. Maybe a five-second delay between teleports is too long? I don't want to overload the map generator. 23:27 Alexand{er|ra} Xiong: Huh. That seems like it could be fun to run in its own world for a while. 23:28 Alexand{er|ra} I hate to stop the game and reload the mod, as it'll start the tests from the beginning, but I think I'll have to rework this code. 23:29 Alexand{er|ra} Teleports every three seconds, and locations nine times as spaced out. 23:29 Alexand{er|ra} Can I get away with every two seconds? I think I'll risk that. 23:41 Alexand{er|ra} Huh. Calculations say a negative test result will still take 926 hours. I'm expecting a much quicker positive result though. 23:42 Alexand{er|ra} I was ten percent away from the way there using hand testing alone, but then I realised I'd misconfigured the world and would need to start the world and the test over. 23:42 Alexand{er|ra} I mean ten percent *of* the way there, not *from*. Oops.