Time Nick Message 00:37 PsychoVision moo? 04:06 redblade hi 04:06 redblade is there any way to stop the server list from loading? 04:07 redblade because i logged in as "redblade7_owner" to a server i didnt own 04:07 redblade i quickly changed the password and apologized 04:07 redblade it just loads every time you view the "client" tab and it's easy to click on something else 04:08 redblade also, i want to know who runs "cashbox world" because i need to apologize and beg them not to ban me 04:09 garywhite not really redblade, sorry 04:09 garywhite to my knowledge, there is no way to shut it off, but I can ask around 04:10 redblade there are two settings that would sound like it, but they dont seem to work 04:17 whitephoenix banned for a name? thats a dumb reason 04:21 redblade i wasnt banned 04:21 redblade i ban people on my server for impersonating admins 04:21 redblade including coming as "someone_owner" 04:22 redblade one time a bunch of people set up a fake rule area with contact emails 04:22 redblade i banned them all 04:22 redblade so i dont know who owns cashbox server but i'd appreciate if they wouldnt ban me 04:23 redblade because if i see "_owner" they're banned pretty fast 04:38 MinetestBot 02[git] 04Calinou -> 03minetest/minetest: Rename testsounds/ directory to sounds/ (#1984) 13d433260 https://git.io/vXL9W (152016-10-30T14:36:57+10:00) 05:32 shadow garywhite: I wish username was saved per favourite 05:33 shadow garywhite: it's not easy to remember what username and where 05:33 shadow seems like an ideal job for computer to remember :) 10:39 Calinou hooray, a PR of me merged 10:39 Calinou of mine* 10:39 Calinou http://www.commitstrip.com/en/2016/09/30/commit-or-die-trying/ :P 10:40 est31 lool 10:41 est31 that system can be easily be gamed though 10:41 est31 just predate some commits and push them after the date :) 10:43 PureTryOut[m] Calinou: yeah took it's time lol 10:43 PureTryOut[m] such a small thing as well 10:48 sfan5 PureTryOut[m]: PRs either 1) get merged instantly or 2) wait for many months or even a year 10:48 PureTryOut[m] yeah seems like it 10:48 PureTryOut[m] simple stuff has been there for months sometime 10:48 PureTryOut[m] and I see a lot of promising PR's in there ;) 10:49 PureTryOut[m] btw when registering a node and assigning it a group (say `oddly_breakable_by_hand`), is 3 the maximum value? 10:49 PureTryOut[m] if I do it any higher I'm unable to break the block at all 10:49 sfan5 afaik you can have a value as high as you want 10:49 sfan5 in theory 10:50 sfan5 in practice anything over 3 or sometimes 2 is not defined for tools 10:50 PureTryOut[m] theory, but in practice anything higher than 3 makes it unbreakable lol 10:50 PureTryOut[m] basically I want a glass block I made to be easier breakable by hand, the default regular glass uses is 3, but that's imo not quick enough 10:51 sfan5 look at the different tool-digging groups that exist 10:51 sfan5 and find one that is fast enough for your liking 10:52 PureTryOut[m] ooh do the tools specify which group level they can break? 10:52 PureTryOut[m] (and how quick they do that) 10:52 sfan5 yes https://github.com/minetest/minetest_game/blob/master/mods/default/tools.lua#L11L15 10:53 PureTryOut[m] interesting, will have to modify the default hand then, thanks 10:54 sfan5 you could just use a different group for your node you know 10:56 PureTryOut[m] well sure, but I would still have to tell the tool how fast it would break that group 10:56 sfan5 is snappy=3 not fast enough? 10:56 PureTryOut[m] that's a tad to quick even ;) I want it in between 10:58 red-001 https://github.com/gelstudios/gitfiti 11:06 PureTryOut[m] haha useful 11:49 Krock red-001, another tool colorized the whole display green 11:50 Krock but this here looks much better 13:54 MinetestBot 02[git] 04nerzhul -> 03minetest/minetest: PlayerSAO/LocalPlayer refactor: (#4612) 139d25242 https://git.io/vXtUA (152016-10-30T14:53:26+01:00) 15:31 MinetestBot 02[git] 04nerzhul -> 03minetest/minetest: Fix overloading problems mentioned by clang 13595932a https://git.io/vXtm0 (152016-10-30T16:30:55+01:00) 17:02 PureTryOut[m] is it possible to make a node with drawtype nodebox, which is facedir? I just want the block to always face me 17:09 whitephoenix yes 17:12 PureTryOut[m] idk how to, my node just keeps facing the same direction no matter what direction I'm looking at 17:12 PureTryOut[m] or do I have to register on_place? 17:14 PureTryOut[m] (I have paramtype2 set to facedir) 17:14 Krock > return PureTryOut[m] ---> stdin:1: attempt to index global 'PureTryOut' (a nil value) 17:15 PureTryOut[m] wut? 17:15 Krock PureTryOut is not a table 17:15 PureTryOut[m] no kidding 17:15 Krock and not a Lua programmer to understand this joke 17:15 AndDT :) 17:15 PureTryOut[m] I understand Lua tables, as far as I need to anyway 17:16 PureTryOut[m] but I don't get the joke no :p 17:37 sfan5 Krock: actually the problem would be trying to index the table with nil 17:37 sfan5 as 'm' is not defined either 17:37 Krock no, the problem is that PureTryOut is nil 17:37 sfan5 well whatever error lua checks first 17:37 PureTryOut[m] ... 17:37 Krock after that, it would try to index with nil, yes 17:38 Krock and yet cause another error if there's not a leaked "m" variable somewhere 17:38 PureTryOut[m] ooh... 17:38 PureTryOut[m] you guys see my name with [m] behind it don't you? 17:38 Krock bingo 17:38 PureTryOut[m] see that's the problem here, I don't 17:38 Krock actually, sfan5, it does not throw an error when indexing with a nil index 17:39 sfan5 spooky 17:39 Krock indeed 17:39 sfan5 that sounds like a design decision made for javascript 17:52 Persi[m] PureTryOut: isn't that because you are accessing through a matrix bridge? It's what the [m] usually means 18:05 sfan5 Persi[m]: he's using a matrix bridge, just like you 18:06 kaeza o/ 18:11 Krock o/ kaeza[m] 18:11 Krock * kaeza 18:11 kaeza Krock, lua: (command line):1: attempt to index global 'PureTryOut' (a nil value) 18:11 Krock yes, he's a nil value. Doesn't even exit 18:12 Krock *exist 18:12 sfan5 !server players:most 18:12 MinetestBot sfan5: Switchboard PVP made by yngwie123 | rrhgameservers.ddns.net:48257 | Clients: 38/100, 27/46 | Version: 0.4.14-dev / switchboardpvp | Ping: 85ms 18:14 Krock !server ping:most 18:14 MinetestBot Krock: Xtreme PVP Survival -=[TPS]=- The Pixel Shadow | servers.minetest.tv:30002 | Clients: 2/50, 1/6 | Version: 0.4.14-dev / thepixelshadow_game | Ping: 409ms 18:17 sfan5 !server ping:least 18:17 MinetestBot sfan5: [FR] Semi-RP - Ethic-craft | quafe.perso.pw | Clients: 0/15, 0/0 | Version: 0.4.14 / minetest | Ping: 2ms 18:17 sfan5 >FR huh what 18:17 sfan5 2ms is pretty good for france 18:17 AndDT Calinou: can you give a link for minetest appimage, please? 18:17 sfan5 or maybe it's not actually hosted in france 18:19 fireglow well, where is MinetestBot hosted? 18:19 garywhite It's hosted by sfan5 18:19 sfan5 the ping comes from the server liste 18:19 sfan5 which is hosted in the netherlands 18:20 Calinou AndDT: https://archive.hugo.pro/minetest/ 18:20 AndDT Thank you 18:26 AndDT Calinou: hm, I cannot mount your AppImage 18:26 Calinou AndDT: it's a type 2 AppImage 18:26 Calinou SquashFS-based 18:26 AndDT ah, nice 18:26 AndDT I knew only about iso9660 18:26 AndDT will try 18:28 fireglow sfan5: oic 18:31 AndDT Calinou: mount -t squashfs fails 18:32 sfan5 Calinou: Minetest--x86_64. 1%[ ] 231,74K 56,5KB/s eta 4m 36s 18:32 sfan5 wow so fast 18:32 AndDT And AppImageExtract asks me for my password (why? sudo?) 18:32 Calinou AndDT: I don't think you can mount it with bare squashfs, ask in #appimage 18:32 Calinou it contains ELF magic 18:32 sfan5 now 20 KB/s 18:32 sfan5 wow 18:33 Calinou sfan5: ask in #appimage why it's slow maybe :P 18:33 sfan5 yup sounds good :P 18:33 Calinou starting the AppImage takes less than 0.5 seconds on most machines 18:33 Calinou (I think it uses LZ4 compression) 18:36 AndDT I don't see LZ4 in list of supported compressors by squashfs 18:37 garywhite !server Minetest City 18:37 MinetestBot garywhite: Extreme Survival Minetest City | 23.28.87.79 | Clients: 6/20, 2/6 | Version: 0.4.14-403dada / extreme_survival | Ping: 131ms 18:37 garywhite Aw crap I have a name conflict with maikerumine 18:37 garywhite !server LS 18:37 MinetestBot garywhite: LS-World | rrhgameservers.ddns.net:48263 | Clients: 6/25, 3/9 | Version: 0.4.14-dev / ls_world | Ping: 88ms 18:37 garywhite !Server MT-City 18:38 garywhite !server MT-City 18:38 MinetestBot garywhite: No results 18:44 PureTryOut[m] Persi: that's indeed what it means 19:08 AndDT Calinou: yay, mounted! had to calculate offset on my own 20:03 demonhunter555 hello 20:03 kaeza o/ 20:04 demonhunter555 hi kaeza 20:06 demonhunter555 vault 20:13 garywhite hello o/ 22:34 MinetestBot 02[git] 04Wuzzy2 -> 03minetest/minetest_game: Add icon overlay to shelf inventory slots 130acd9a2 https://git.io/vXtPq (152016-10-30T15:32:43-07:00)