Time Nick Message 01:42 iqualfragile "Consider this channel instead of /msg celeron55." shouldnt that be dropped? 01:44 us_0gb If we drop that, everyone will start messaging Celeron again though. 03:30 iqualfragile us_0gb: you sure? minetest does not contain c55 in its name, most development is done by others, he is only named as "original author" on the website… i do not think he would be spammed 03:31 us_0gb iqualfragile: It was a joke. I don't think anyone that would message Celleron is even going to read the topic. 03:31 us_0gb *Celeron 03:31 iqualfragile true 03:40 RealBadAngel "instead of spamming an original author buy him a coffee" 03:41 RealBadAngel and the link to the coffe machine ;) 03:46 us_0gb Or some tea. 03:46 * us_0gb links to the IcedTea project 11:00 nore I rebased set_sky... any thoughts on it? https://github.com/Novatux/minetest/tree/set_sky 11:01 nore salamanderrake, 11:02 nore sapier, still good to merge? 11:02 nore ^ sorry, wrong autocompletion and then pressed enter instead if backspace... 11:23 RealBadAngel this shall have added set moon/sun 11:23 RealBadAngel without it its simply incomplete 11:38 nore ^ RealBadAngel, perhaps that could be added later 16:26 ShadowNinja set_sky is approved, pending rebase. So you can merge it. 16:39 sfan5 anyone of the core dev team with reddit account wanting to become mod at /r/minetest ? 16:50 rubenwardy "l am Bedie Konate, I am a financial consultant and friend to a foreigner who died in Dec 26, 2003 that shared same surname with you. I am contacting you to assist retrieve his huge deposit of US$ 2.5 Million left in the bank before it gets confiscated. l wait to hear from you for more details. Please get in touch with me 16:50 rubenwardy as soon as your read this mail." 16:50 rubenwardy ffs 16:50 rubenwardy wrong channel 16:51 sfan5 rubenwardy: is that a spam mail? 16:51 rubenwardy Yeah 16:52 sapier nigeria connection style 17:34 sapier ok I hope someone did try if #960 does what it's intended to do? 17:34 ShadowBot https://github.com/minetest/minetest/issues/960 -- set_sky()/override_day_night_ratio() by celeron55 17:35 VanessaE well RBA's right that it needs a way to configure the behavior of the sun/moon also 17:36 sapier is this supposed to be a blocker or just an additional feature request? 17:36 VanessaE idk, I wouldn't say it's a blocker. 17:37 VanessaE but I think the idea is that if you set a space realm...why would there be a moon? 17:37 VanessaE or, necessarily, a sun for that matter. 17:37 VanessaE (let alone their rates of passage) 17:38 sapier true but right now I just want to merge it, I don't know how this stuff works. I just checked for obvious programming errors 17:38 VanessaE ok 17:39 VanessaE well I guess if it does what it's meant to 17:41 sapier actually I don't even know why it's me who has to merge it. It's way more scriptapi then client/server :-) 17:42 sapier ok merging NOW 17:43 VanessaE wait! NO! NOT THAT BUTTON! 17:43 VanessaE :) 17:43 sapier I don't use the button ;-) wouldn't have worked anyway as I had to rebase it before 17:52 nore ^ sapier, I rebased set_sky... so you can merge it if you want to 17:52 sapier hmm :-) already merged nore 17:52 nore sapier, you can remove those 2 lines: https://github.com/minetest/minetest/commit/86a6cca3cf641fc2c88184ad26d2be3d7e7460f7#diff-1305560bd8befb32862f0feeefabd02eR1821 17:52 sapier sorry didn't know you did rebase 17:53 nore (since your client initialization thing) 17:53 sapier sorry which lines? 17:53 nore the thing in the API 17:54 nore it works well in register_on_joinplayer 17:55 sapier ohh ok :-) guess that's gonna be a low prio doc fix ... ShadowNinja doc is yours *smile* 18:47 VanessaE ERROR[main]: draw_hotbar(): mainlist == NULL <---- what? 18:48 VanessaE spams the shit out of my console when I sign into my survival server. updated the server yesterday. 19:04 sapier old or new client? 19:06 VanessaE it's current. 19:06 VanessaE e258675eabc874d31bc9c6cf49e4bbc1f7f3f417 19:06 VanessaE well current enough 19:06 VanessaE server's at that commit also. 19:06 sapier hmm I guess I missed that point in client init, the error is quite useless as this is a valid situation right now 19:06 VanessaE other players have mentioned being spammed by these errors also, on "old" clients. 19:08 sapier yes because of inventory init beeing delayed till player got all media. This is necessary to not show it in world prior it's completely initialized. Can you confirm this message does only show up for a couple of seconds? 19:19 VanessaE yeah 19:19 VanessaE only for the first second or two 19:19 VanessaE but it shows up dozens of times 19:19 sapier till that information is transmitted by server 19:19 sapier for all client steps till that information is received 19:19 VanessaE yeah 19:19 VanessaE but messages like this don't belong in the chat 19:19 sapier I'll remove the error message to ignore it silently 19:19 VanessaE this stuff belongs in the log, and one time only 19:20 VanessaE ok 21:58 sapier https://github.com/minetest/minetest/pull/1131 Shadow can you check if I did rebase your work correctly? 22:08 ShadowNinja sapier: Nope, try connecting to a server on the server list ( ttps://github.com/minetest/minetest/pull/1131/files#diff-16525c326f5842e04cbdf0b3ae8254fcR629 ) 22:08 ShadowNinja +h 22:09 ShadowNinja The bind_address is only used by the server, the client always binds 0.0.0.0/0::0 22:10 ShadowNinja That code will try to bind the client to the server's address, which will only work if the server's local. 22:11 ShadowNinja And this should be using the address, not bind_address: https://github.com/minetest/minetest/pull/1131/files#diff-16525c326f5842e04cbdf0b3ae8254fcR964 22:13 ShadowNinja What did you touch here? Trailing whitespace? https://github.com/minetest/minetest/pull/1131/files#diff-18513665750ef5adf42b5ec29e14162eL912-R913 22:16 ShadowNinja The && bind_str != "0.0.0.0" is unnecessary here. And if you add that you should add "::" too, and "0::0", and "0000:0000:0000:0000"... https://github.com/minetest/minetest/pull/1131/files#diff-18513665750ef5adf42b5ec29e14162eR1036 22:18 ShadowNinja What's this for? https://github.com/minetest/minetest/pull/1131/files#diff-18513665750ef5adf42b5ec29e14162eR1040 22:18 sapier I fixed it so gui clients work too 22:19 sapier you're right Ipv6 code is missing I fix it 22:21 ShadowNinja This code style is wrong: https://github.com/minetest/minetest/pull/1131/files#diff-a2a82fe964a7b85f20cd5239d386184aR1664 22:21 ShadowNinja sapier: The bind address doesn't touch the client. I made that mistake already. 22:22 sapier don't know what problems you had but this works 22:24 ShadowNinja https://github.com/minetest/minetest/pull/1131/files#diff-3474ba74d8eb9c72a47c6542f51eb4fcR178 This should default to "" so that it is determined correctly for IPv6. 23:01 VanessaE um, am I seeing a new bug? 23:01 VanessaE trees grown from saplings occasionally have trunks being flipps sideways? 23:01 VanessaE flipped* 23:04 VanessaE (it could actually be seen as a feature if the rotated trunks were confined to just the top two or three nodes, and were *always* rotated) 23:11 ShadowNinja #459 Seems good, any comments? 23:11 ShadowBot https://github.com/minetest/minetest/issues/459 -- Added basic support for generating API documentation using doxygen by doserj 23:12 PilzAdam ShadowNinja, we had several discussions about whether to use doxygen or not 23:12 PilzAdam IIRC the result was that we dont want to use it 23:13 ShadowNinja PilzAdam: This doesn't force anyone to do anything, it just makes it easier to generate documentation fom what is available. 23:13 ShadowNinja +r 23:13 ShadowNinja (And, FWIW, doxygen documentation is helpfull and I'd like to have it used) 23:20 sapier while I'd be positive about doxygen, the problem is it's useless if it isn't used everywhere. And chances to use it everywhere are quite minor 23:45 VanessaE regarding the oddly-turned trees, it seems to affect about 1 in 4 or so, maybe a bit less, and anywhere from 1 to 3 nodes of the tree get turned wrong.