2021-01-28 04:07:37 --> mgrech (~mgrech@178-189-193-250.adsl.highway.telekom.at) a rejoint #mcdevs 2021-01-28 07:47:31 --> mgrech_ (~mgrech@178-189-193-250.adsl.highway.telekom.at) a rejoint #mcdevs 2021-01-28 07:49:29 <-- mgrech (~mgrech@178-189-193-250.adsl.highway.telekom.at) a quitté (Ping timeout: 256 seconds) 2021-01-28 08:07:49 --> matthewprenger (~matthewpr@2605:a601:ac3b:300:9044:c891:3a8e:f84e) a rejoint #mcdevs 2021-01-28 10:07:51 Not-77e [mineflayer] rom1504 pushed 1 commit to master [+0/-0/±3] https://git.io/JtWyF 2021-01-28 10:07:52 Not-77e [mineflayer] ArcticZeroo 33b731c - Promisify testCommon (#1586) * Promisify testCommon I have chosen not to promisify all the tests themselves for now. All bot.test methods use callbackify such that they are still compatible with every existing test, but they all return promises now so that they may be used with future tests as well. * Add better test resolution in externalTest Previously, tests would be 2021-01-28 10:07:52 Not-77e resolved based on the current working directory (where you started the tests from), rather than where the externalTest.js file is located on the file system. The timeout was also not being set for individual tests. * Add new promise utils withTimeout attaches a timeout to a promise and causes it to reject after a certain amount of time. onceWithCleanup is similar to once, but does listener removal and also supports 2021-01-28 10:07:52 Not-77e timeouts/conditionals. * convert all "new Promise"s to use onceWithCleanup * Fix call stack in onceWithCleanup * Always resolve creative mode promise * Use an async function for setCreativeMode .then(resolve, resolve) rubbed me the wrong way * withTimeout now uses Promise.race, add typeof checks * Bump test timeout to 60 seconds Fishing takes a -really- long time (around 45 seconds on average in my testing), so 30s 2021-01-28 10:07:52 Not-77e doesn't cut it. 2021-01-28 10:09:35 --> jkrejcha (~jkrejcha@c-67-189-8-64.hsd1.wa.comcast.net) a rejoint #mcdevs 2021-01-28 10:22:37 --> CopperPenguin96 (325ad539@050-090-213-057.res.spectrum.com) a rejoint #mcdevs 2021-01-28 10:40:07 CopperPenguin96 Hey y'all ! Not sure how active this channel is,  I see some familiar names that know me as apotter96 (ClassiCube friends), and I've been working on a custom Minecraft server in C#. It's actually been a great learning process, understanding how servers/clients work, and sending packets and receiving them. 2021-01-28 10:40:08 CopperPenguin96 There is one thing I'm struggling with right now, and that's understanding NBT. I understand the concept, and I'm utilizing the library fNBT to assist on the project, but I'm trying to keep my packet sending/receiving organized by making a simple-cut-and-easy method to writing an NBT tag to the stream. 2021-01-28 10:40:08 CopperPenguin96 I'm specifically working on the Block Entity Data packet (Play, Clientbound, 0x09, Protocal version 754, which is the current at wiki.vg/Protocol). It says NbtTag, and I wanted someone to look at the code I have, to see if this is a correct way of handling this. 2021-01-28 10:40:08 CopperPenguin96 GameStream.cs (extends class Stream) https://pastebin.com/wR0U1uZQ 2021-01-28 10:40:09 CopperPenguin96 And then an example of trying to send this packet: https://pastebin.com/VCKW00gr 2021-01-28 10:40:09 CopperPenguin96 * please note that on the example, one thing I failed to add is the part of the packet where you send what action is happening. 2021-01-28 10:40:10 CopperPenguin96  * also note, base.Send() just sends the packet, simple clean way so I'm not having to create giant methods calculating packet size each time, all sending packets going to the same base method. 2021-01-28 10:47:08 -- CopperPenguin96 est maintenant connu sous le nom CPen 2021-01-28 10:50:29 --> CopperPenguin96 (~CopperPen@050-090-213-057.res.spectrum.com) a rejoint #mcdevs 2021-01-28 10:51:05 <-- CPen (325ad539@050-090-213-057.res.spectrum.com) a quitté (Quit: Connection closed) 2021-01-28 10:52:47 CopperPenguin96 So yeah, if anybody could potentially take the time and look and give me some advice, correct me where I'm wrong, I'd be more than grateful! 2021-01-28 10:55:03 <-- CopperPenguin96 (~CopperPen@050-090-213-057.res.spectrum.com) a quitté (Read error: Connection reset by peer) 2021-01-28 10:57:21 --> CopperPenguin96 (~CopperPen@050-090-213-057.res.spectrum.com) a rejoint #mcdevs 2021-01-28 10:57:41 CopperPenguin96 Snap, I didn't mean to logout. oops! 2021-01-28 10:58:55 Sainan From what I understand, you're asking for a code review, and the code works? 2021-01-28 10:59:23 Sainan That's honestly a bit new to me. I'd say it looks fine and similar enough to what I would've written, for whatever that is worth. 2021-01-28 11:02:13 CopperPenguin96 I haven't tried it yet, I just wanted some clarification first. Nbt seems fairly simple, but I wanted to make sure I was understanding the Protocol correctly and if I handled it right. 2021-01-28 11:03:09 Sainan Drop the dependency, then you have to understand it right, or else it won't work :P 2021-01-28 11:05:57 CopperPenguin96 I understand how NBT works, I just wanted to make sure what I was sending is what the Minecraft client would be expecting when it receives the packet from my packet when I send it. 2021-01-28 11:06:43 Sainan Then test your code to see if it works? 2021-01-28 11:07:00 CopperPenguin96 true true 2021-01-28 11:08:20 <-- CopperPenguin96 (~CopperPen@050-090-213-057.res.spectrum.com) a quitté (Read error: Connection reset by peer) 2021-01-28 11:23:25 --> justink_ase (~jkrejcha@c-67-189-8-64.hsd1.wa.comcast.net) a rejoint #mcdevs 2021-01-28 11:26:37 <-- jkrejcha (~jkrejcha@c-67-189-8-64.hsd1.wa.comcast.net) a quitté (Ping timeout: 256 seconds) 2021-01-28 12:00:06 --> ichbinjoe_ (~ichbinjoe@99.144.118.221) a rejoint #mcdevs 2021-01-28 12:00:40 <-- ichbinjoe (~ichbinjoe@99.144.118.221) a quitté (Ping timeout: 272 seconds) 2021-01-28 12:38:15 -- justink_ase est maintenant connu sous le nom jkrejcha 2021-01-28 13:00:53 <-- archer_321 (~archer@ip-62-143-214-77.hsi01.unitymediagroup.de) a quitté (Quit: ZNC 1.8.2 - https://znc.in) 2021-01-28 13:02:59 --> archer_321 (~archer@ip-62-143-214-77.hsi01.unitymediagroup.de) a rejoint #mcdevs 2021-01-28 14:45:37 --> archer_321_ (~archer@ip-62-143-214-77.hsi01.unitymediagroup.de) a rejoint #mcdevs 2021-01-28 14:45:55 <-- archer_321 (~archer@ip-62-143-214-77.hsi01.unitymediagroup.de) a quitté (Ping timeout: 256 seconds) 2021-01-28 15:58:42 -- circuit1010 est maintenant connu sous le nom circuit10 2021-01-28 16:11:16 --> circuit10_ (~circuit10@vmi411623.contaboserver.net) a rejoint #mcdevs 2021-01-28 16:12:55 <-- circuit10 (5f6ff98f@gateway/web/cgi-irc/kiwiirc.com/ip.95.111.249.143) a quitté (Quit: Connection closed) 2021-01-28 16:14:29 <-- circuit10_ (~circuit10@vmi411623.contaboserver.net) a quitté (Client Quit) 2021-01-28 16:15:46 --> circuit10 (~circuit10@vmi411623.contaboserver.net) a rejoint #mcdevs 2021-01-28 16:16:16 <-- circuit102 (~circuit10@vmi411623.contaboserver.net) a quitté (Remote host closed the connection) 2021-01-28 16:16:16 <-- SiebeDW (~SiebeDW@vmi411623.contaboserver.net) a quitté (Remote host closed the connection) 2021-01-28 16:16:16 <-- None4U (~None4U@vmi411623.contaboserver.net) a quitté (Remote host closed the connection) 2021-01-28 16:16:16 <-- AwesomestCode (~Awesomest@vmi411623.contaboserver.net) a quitté (Remote host closed the connection) 2021-01-28 16:16:16 <-- islender (~islender@vmi411623.contaboserver.net) a quitté (Remote host closed the connection) 2021-01-28 16:16:33 --> SiebeDW (~SiebeDW@vmi411623.contaboserver.net) a rejoint #mcdevs 2021-01-28 16:16:33 --> islender (~islender@vmi411623.contaboserver.net) a rejoint #mcdevs 2021-01-28 16:16:33 --> AwesomestCode (~Awesomest@vmi411623.contaboserver.net) a rejoint #mcdevs 2021-01-28 16:16:33 --> None4U (~None4U@vmi411623.contaboserver.net) a rejoint #mcdevs 2021-01-28 16:16:34 --> circuit101 (~circuit10@vmi411623.contaboserver.net) a rejoint #mcdevs 2021-01-28 16:25:28 <-- SiebeDW (~SiebeDW@vmi411623.contaboserver.net) a quitté (Remote host closed the connection) 2021-01-28 16:25:28 <-- circuit101 (~circuit10@vmi411623.contaboserver.net) a quitté (Remote host closed the connection) 2021-01-28 16:25:28 <-- None4U (~None4U@vmi411623.contaboserver.net) a quitté (Remote host closed the connection) 2021-01-28 16:25:28 <-- AwesomestCode (~Awesomest@vmi411623.contaboserver.net) a quitté (Remote host closed the connection) 2021-01-28 16:25:28 <-- islender (~islender@vmi411623.contaboserver.net) a quitté (Remote host closed the connection) 2021-01-28 16:35:13 --> AwesomestCode (~Awesomest@vmi411623.contaboserver.net) a rejoint #mcdevs 2021-01-28 16:38:28 --> AwesomestCode1 (~Awesomest@vmi411623.contaboserver.net) a rejoint #mcdevs 2021-01-28 16:38:28 --> islender1 (~islender@vmi411623.contaboserver.net) a rejoint #mcdevs 2021-01-28 16:38:28 --> None4U1 (~None4U@vmi411623.contaboserver.net) a rejoint #mcdevs 2021-01-28 16:38:28 --> SiebeDW1 (~SiebeDW@vmi411623.contaboserver.net) a rejoint #mcdevs 2021-01-28 16:38:29 --> circuit101 (~circuit10@vmi411623.contaboserver.net) a rejoint #mcdevs 2021-01-28 16:39:04 <-- circuit101 (~circuit10@vmi411623.contaboserver.net) a quitté (Remote host closed the connection) 2021-01-28 16:39:04 <-- AwesomestCode1 (~Awesomest@vmi411623.contaboserver.net) a quitté (Remote host closed the connection) 2021-01-28 16:39:04 <-- islender1 (~islender@vmi411623.contaboserver.net) a quitté (Remote host closed the connection) 2021-01-28 16:39:04 <-- None4U1 (~None4U@vmi411623.contaboserver.net) a quitté (Remote host closed the connection) 2021-01-28 16:39:05 <-- SiebeDW1 (~SiebeDW@vmi411623.contaboserver.net) a quitté (Remote host closed the connection) 2021-01-28 16:46:42 <-- stilbruch (~stilbruch@157.245.122.124) a quitté (Quit: ZNC 1.8.2 - https://znc.in) 2021-01-28 16:47:06 --> stilbruch (~stilbruch@157.245.122.124) a rejoint #mcdevs 2021-01-28 16:59:35 <-- stilbruch (~stilbruch@157.245.122.124) a quitté (Quit: ZNC 1.8.2 - https://znc.in) 2021-01-28 17:00:26 --> stilbruch (~stilbruch@157.245.122.124) a rejoint #mcdevs 2021-01-28 17:04:03 <-- stilbruch (~stilbruch@157.245.122.124) a quitté (Client Quit) 2021-01-28 17:04:55 --> stilbruch (~stilbruch@157.245.122.124) a rejoint #mcdevs 2021-01-28 17:04:56 <-- stilbruch (~stilbruch@157.245.122.124) a quitté (Remote host closed the connection) 2021-01-28 17:05:20 --> stilbruch (~stilbruch@157.245.122.124) a rejoint #mcdevs 2021-01-28 17:20:41 <-- stilbruch (~stilbruch@157.245.122.124) a quitté (Quit: goodbye) 2021-01-28 17:21:04 --> stilbruch (~stilbruch@157.245.122.124) a rejoint #mcdevs 2021-01-28 17:23:34 <-- stilbruch (~stilbruch@157.245.122.124) a quitté (Client Quit) 2021-01-28 17:24:26 --> stilbruch (~stilbruch@157.245.122.124) a rejoint #mcdevs 2021-01-28 17:37:21 <-- Intelli (sid46069@gateway/web/irccloud.com/x-xleuyqfafyfscugh) a quitté (Read error: Connection reset by peer) 2021-01-28 17:37:31 --> Intelli (sid46069@gateway/web/irccloud.com/x-lmavpgufjqinczsn) a rejoint #mcdevs 2021-01-28 18:10:08 --> bixilon_ (~bixilon@node-3.bixilon.de) a rejoint #mcdevs 2021-01-28 18:13:17 <-- bixilon (~bixilon@node-3.bixilon.de) a quitté (Ping timeout: 265 seconds) 2021-01-28 18:13:17 -- bixilon_ est maintenant connu sous le nom bixilon 2021-01-28 18:16:57 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2021-01-28 18:18:02 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 264 seconds) 2021-01-28 18:18:02 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2021-01-28 18:22:45 <-- bixilon (~bixilon@node-3.bixilon.de) a quitté (Quit: ZNC 1.7.5+deb4 - https://znc.in) 2021-01-28 18:37:03 <-- jkrejcha (~jkrejcha@c-67-189-8-64.hsd1.wa.comcast.net) a quitté (Ping timeout: 260 seconds) 2021-01-28 20:46:33 --> bixilon (~bixilon@node-3.bixilon.de) a rejoint #mcdevs 2021-01-28 22:00:25 <-- mgrech_ (~mgrech@178-189-193-250.adsl.highway.telekom.at) a quitté (Ping timeout: 240 seconds) 2021-01-28 22:30:04 <-- bixilon (~bixilon@node-3.bixilon.de) a quitté (Ping timeout: 240 seconds) 2021-01-28 22:45:59 --> bixilon (~bixilon@node-3.bixilon.de) a rejoint #mcdevs 2021-01-28 23:03:13 <-- bixilon (~bixilon@node-3.bixilon.de) a quitté (Quit: ZNC 1.7.5+deb4 - https://znc.in) 2021-01-28 23:04:27 <-- dexter0 (~dexter0@c-73-222-1-210.hsd1.ca.comcast.net) a quitté (Ping timeout: 258 seconds) 2021-01-28 23:05:29 --> dexter0 (~dexter0@c-73-222-1-210.hsd1.ca.comcast.net) a rejoint #mcdevs 2021-01-28 23:08:12 --> bixilon (~bixilon@node-3.bixilon.de) a rejoint #mcdevs 2021-01-28 23:46:59 <-- bixilon (~bixilon@node-3.bixilon.de) a quitté (Quit: ZNC 1.7.5+deb4 - https://znc.in) 2021-01-29 00:14:27 --> Morrolan_ (morrolan@znc.morrolan.ch) a rejoint #mcdevs 2021-01-29 00:14:48 <-- Morrolan (morrolan@znc.morrolan.ch) a quitté (Ping timeout: 240 seconds) 2021-01-29 00:14:48 <-- dan5_ (~dan112@unaffiliated/dan112) a quitté (Quit: quit) 2021-01-29 00:14:54 --> dan5 (~dan112@unaffiliated/dan112) a rejoint #mcdevs 2021-01-29 00:31:11 <-- dan5 (~dan112@unaffiliated/dan112) a quitté (Quit: quit) 2021-01-29 00:31:25 --> dan5 (~dan112@unaffiliated/dan112) a rejoint #mcdevs 2021-01-29 00:40:36 <-- dan5 (~dan112@unaffiliated/dan112) a quitté (Ping timeout: 240 seconds) 2021-01-29 00:41:25 --> dan5 (~dan112@unaffiliated/dan112) a rejoint #mcdevs 2021-01-29 01:19:23 <-- loser_ (~loser@176.88.92.246) a quitté (Ping timeout: 246 seconds) 2021-01-29 01:20:17 <-- yangm (yanyetanot@gateway/shell/matrix.org/x-gurxiuppxlraqhtc) a quitté (Ping timeout: 265 seconds) 2021-01-29 01:20:25 <-- m0r13 (~m0r13@mail.yellow-ray.de) a quitté (Ping timeout: 240 seconds) 2021-01-29 01:20:25 <-- Prf_Jakob (jakob@volt/developer/jakob) a quitté (Ping timeout: 240 seconds) 2021-01-29 01:20:47 <-- JuniorJPDJ (juniorjp1@gateway/shell/matrix.org/x-svysesrvlfluaflu) a quitté (Ping timeout: 265 seconds) 2021-01-29 01:21:03 --> Prf_Jakob (jakob@volt/developer/jakob) a rejoint #mcdevs 2021-01-29 01:21:03 -- Mode #mcdevs [+v Prf_Jakob] par ChanServ 2021-01-29 01:21:14 <-- uaon[m] (uaonmatrix@gateway/shell/matrix.org/x-jxuybxdyssjpuygv) a quitté (Ping timeout: 265 seconds) 2021-01-29 01:21:44 --> loser_ (~loser@176.88.95.97) a rejoint #mcdevs 2021-01-29 01:24:14 --> JuniorJPDJ (juniorjp1@gateway/shell/matrix.org/x-wrdgnntvtuqammsm) a rejoint #mcdevs 2021-01-29 01:29:10 --> uaon[m] (uaonmatrix@gateway/shell/matrix.org/x-pgmshwwrltnwpcdt) a rejoint #mcdevs 2021-01-29 01:29:38 --> m0r13 (~m0r13@mail.yellow-ray.de) a rejoint #mcdevs 2021-01-29 01:46:28 --> AwesomestCode_ (~Awesomest@vmi411623.contaboserver.net) a rejoint #mcdevs 2021-01-29 01:46:52 <-- AwesomestCode (~Awesomest@vmi411623.contaboserver.net) a quitté (Ping timeout: 256 seconds) 2021-01-29 01:46:53 <-- ichbinjoe_ (~ichbinjoe@99.144.118.221) a quitté (Ping timeout: 256 seconds) 2021-01-29 01:47:12 --> ichbinjoe (~ichbinjoe@2600:1700:3ec7:2103:1298:36ff:fea5:8599) a rejoint #mcdevs 2021-01-29 02:14:27 <-- asterix1324[m]1 (asterix12@gateway/shell/matrix.org/x-dreukotzxbcvuaxr) a quitté (Ping timeout: 240 seconds) 2021-01-29 02:14:53 <-- chibill (chibillmat@gateway/shell/matrix.org/x-ttehczdcspzyxxro) a quitté (Ping timeout: 244 seconds) 2021-01-29 02:14:53 <-- panpernicek[m] (panpernice@gateway/shell/matrix.org/x-tkbgslnkxdezqmnw) a quitté (Ping timeout: 244 seconds) 2021-01-29 02:14:56 <-- JuniorJPDJ (juniorjp1@gateway/shell/matrix.org/x-wrdgnntvtuqammsm) a quitté (Ping timeout: 240 seconds) 2021-01-29 02:15:04 <-- Bond_009[m] (bond009mat@gateway/shell/matrix.org/x-qojnitspfrrgiefy) a quitté (Ping timeout: 260 seconds) 2021-01-29 02:15:05 <-- Brandon15811 (sid13052@gateway/web/irccloud.com/x-qcueyqkbpkwjfznt) a quitté (Ping timeout: 265 seconds) 2021-01-29 02:15:26 <-- uaon[m] (uaonmatrix@gateway/shell/matrix.org/x-pgmshwwrltnwpcdt) a quitté (Ping timeout: 240 seconds) 2021-01-29 02:17:29 --> Brandon15811 (sid13052@gateway/web/irccloud.com/x-sezipllahrrudbyu) a rejoint #mcdevs 2021-01-29 02:17:56 <-- smoke42 (smoke42mat@gateway/shell/matrix.org/x-tmvwnmluurnccmjs) a quitté (Ping timeout: 240 seconds) 2021-01-29 02:19:11 <-- asterix1324 (asterix132@gateway/shell/matrix.org/x-rorkdenipssabsve) a quitté (Ping timeout: 258 seconds) 2021-01-29 02:35:29 --> panpernicek[m] (panpernice@gateway/shell/matrix.org/x-jsuxshpvznwdmtob) a rejoint #mcdevs 2021-01-29 02:36:07 --> bixilon (~bixilon@node-3.bixilon.de) a rejoint #mcdevs 2021-01-29 02:37:01 --> chibill (chibillmat@gateway/shell/matrix.org/x-eltmzgmmgjurgihg) a rejoint #mcdevs 2021-01-29 02:39:45 --> JuniorJPDJ (juniorjp1@gateway/shell/matrix.org/x-mfohzgenyjzkhosh) a rejoint #mcdevs 2021-01-29 02:40:16 --> asterix1324[m]1 (asterix12@gateway/shell/matrix.org/x-xrggiyqbjmqfwkgc) a rejoint #mcdevs 2021-01-29 02:41:08 --> Bond_009[m] (bond009mat@gateway/shell/matrix.org/x-rvmbnwovgcnvwhug) a rejoint #mcdevs 2021-01-29 02:49:29 --> jkrejcha (~jkrejcha@c-67-189-8-64.hsd1.wa.comcast.net) a rejoint #mcdevs 2021-01-29 02:53:24 --> uaon[m] (uaonmatrix@gateway/shell/matrix.org/x-pdvkwyfmynjljmbt) a rejoint #mcdevs 2021-01-29 02:55:32 --> asterix1324 (asterix132@gateway/shell/matrix.org/x-xpghqqajwhkhiozk) a rejoint #mcdevs 2021-01-29 03:03:55 <-- JuniorJPDJ (juniorjp1@gateway/shell/matrix.org/x-mfohzgenyjzkhosh) a quitté (Ping timeout: 244 seconds) 2021-01-29 03:04:04 <-- asterix1324 (asterix132@gateway/shell/matrix.org/x-xpghqqajwhkhiozk) a quitté (Ping timeout: 240 seconds) 2021-01-29 03:04:05 <-- panpernicek[m] (panpernice@gateway/shell/matrix.org/x-jsuxshpvznwdmtob) a quitté (Ping timeout: 240 seconds) 2021-01-29 03:04:12 <-- Bond_009[m] (bond009mat@gateway/shell/matrix.org/x-rvmbnwovgcnvwhug) a quitté (Ping timeout: 265 seconds) 2021-01-29 03:04:12 <-- asterix1324[m]1 (asterix12@gateway/shell/matrix.org/x-xrggiyqbjmqfwkgc) a quitté (Ping timeout: 265 seconds) 2021-01-29 03:04:25 <-- uaon[m] (uaonmatrix@gateway/shell/matrix.org/x-pdvkwyfmynjljmbt) a quitté (Ping timeout: 258 seconds) 2021-01-29 03:04:28 <-- chibill (chibillmat@gateway/shell/matrix.org/x-eltmzgmmgjurgihg) a quitté (Ping timeout: 260 seconds) 2021-01-29 03:27:32 --> mgrech_ (~mgrech@178-189-193-250.adsl.highway.telekom.at) a rejoint #mcdevs 2021-01-29 03:30:52 --> smoke42 (smoke42mat@gateway/shell/matrix.org/x-zsubempbjjxoyvlv) a rejoint #mcdevs 2021-01-29 03:33:14 --> chibill (chibillmat@gateway/shell/matrix.org/x-dwbkscwurlrxilka) a rejoint #mcdevs 2021-01-29 03:34:22 --> JuniorJPDJ (juniorjp1@gateway/shell/matrix.org/x-eojuobdeawsskddd) a rejoint #mcdevs 2021-01-29 03:35:29 --> panpernicek[m] (panpernice@gateway/shell/matrix.org/x-gkqhfulxugavbzwu) a rejoint #mcdevs 2021-01-29 03:48:39 --> asterix1324[m]1 (asterix12@gateway/shell/matrix.org/x-drqcffazjgdgyqif) a rejoint #mcdevs 2021-01-29 03:52:16 --> Bond_009[m] (bond009mat@gateway/shell/matrix.org/x-garqfbyxejwqtldk) a rejoint #mcdevs 2021-01-29 03:59:34 --> asterix1324 (asterix132@gateway/shell/matrix.org/x-aackiwducoowhbcp) a rejoint #mcdevs 2021-01-29 04:01:21 --> uaon[m] (uaonmatrix@gateway/shell/matrix.org/x-bwmypaclezlxmpfz) a rejoint #mcdevs 2021-01-29 04:31:43 <-- jkrejcha (~jkrejcha@c-67-189-8-64.hsd1.wa.comcast.net) a quitté (Ping timeout: 260 seconds) 2021-01-29 04:34:14 --> vemacs|ded (~vemacs@192.3.17.176) a rejoint #mcdevs 2021-01-29 04:38:53 <-- GingerGeek (~Zed@freenode/sponsor/gingergeek) a quitté (*.net *.split) 2021-01-29 04:38:53 <-- Byteflux (~byte@byteflux.net) a quitté (*.net *.split) 2021-01-29 04:38:53 <-- Amaranth (~travis@ubuntu/member/Amaranth) a quitté (*.net *.split) 2021-01-29 04:38:53 <-- vemacse (~vemacs@192.3.17.176) a quitté (*.net *.split) 2021-01-29 04:38:54 <-- Disconsented (~quassel@disconsented.com) a quitté (*.net *.split) 2021-01-29 04:39:57 <-- asterix1324[m]1 (asterix12@gateway/shell/matrix.org/x-drqcffazjgdgyqif) a quitté (Ping timeout: 246 seconds) 2021-01-29 04:41:34 <-- Jeebiss (sid25046@gateway/web/irccloud.com/x-dkuzgnsmnegmjlpy) a quitté (Ping timeout: 246 seconds) 2021-01-29 04:43:30 --> GingerGeek (~Zed@freenode/sponsor/gingergeek) a rejoint #mcdevs 2021-01-29 04:43:30 --> Byteflux (~byte@byteflux.net) a rejoint #mcdevs 2021-01-29 04:43:30 --> Amaranth (~travis@ubuntu/member/Amaranth) a rejoint #mcdevs 2021-01-29 04:43:30 --> Disconsented (~quassel@disconsented.com) a rejoint #mcdevs 2021-01-29 04:43:30 -- Mode #mcdevs [+v Amaranth] par adams.freenode.net 2021-01-29 04:43:39 --> Jeebiss (sid25046@gateway/web/irccloud.com/x-exjmrdacripcqbqt) a rejoint #mcdevs 2021-01-29 04:47:24 --> asterix1324[m]1 (asterix12@gateway/shell/matrix.org/x-joquozugauzvbwqw) a rejoint #mcdevs 2021-01-29 06:03:20 Not-77e [mineflayer] rom1504 pushed 1 commit to master [+0/-0/±1] https://git.io/Jtldy 2021-01-29 06:03:21 Not-77e [mineflayer] IceTank 6a3352c - Bot is not Skipping the end credits in 1.12 (#1630) * Fixed Bot not skipping end credits. When entering the end portal for the first time. * Lint fix 2021-01-29 06:04:00 --> ry60003333 (~textual@2603-6010-3f06-a9d6-e1ed-3827-825f-4561.res6.spectrum.com) a rejoint #mcdevs 2021-01-29 07:56:56 <-- electronicboy (~electroni@atlas.valaria.pw) a quitté (Ping timeout: 240 seconds) 2021-01-29 07:58:15 --> StackDoubleFlow5 (~StackDoub@45-29-51-69.lightspeed.cicril.sbcglobal.net) a rejoint #mcdevs 2021-01-29 07:59:47 <-- StackDoubleFlow (~StackDoub@45-29-51-69.lightspeed.cicril.sbcglobal.net) a quitté (Ping timeout: 265 seconds) 2021-01-29 07:59:47 -- StackDoubleFlow5 est maintenant connu sous le nom StackDoubleFlow 2021-01-29 08:14:31 --> camotoy (~camotoy@2600:1700:5531:3d80:ff:60ff:fe24:68ed) a rejoint #mcdevs 2021-01-29 08:15:23 <-- camotoy_ (~camotoy@104-4-111-192.lightspeed.bcvloh.sbcglobal.net) a quitté (Ping timeout: 272 seconds) 2021-01-29 09:48:28 --> electronicboy (~electroni@atlas.valaria.pw) a rejoint #mcdevs 2021-01-29 10:11:25 <-- lxeiqr (~lxeiqr@37.30.48.225.nat.umts.dynamic.t-mobile.pl) a quitté (Ping timeout: 264 seconds) 2021-01-29 10:13:14 --> lxeiqr (~lxeiqr@37.30.51.18.nat.umts.dynamic.t-mobile.pl) a rejoint #mcdevs 2021-01-29 10:15:37 <-- SinZ (znc@steamdb/source2-guru/sinz) a quitté (Ping timeout: 272 seconds) 2021-01-29 10:15:46 --> SinZ (znc@2400:6180:0:d0::64f:9001) a rejoint #mcdevs 2021-01-29 10:16:10 -- SinZ est maintenant connu sous le nom Guest62778 2021-01-29 10:31:44 --> blackdog476 (~notquasse@godx.pw) a rejoint #mcdevs 2021-01-29 14:00:26 <-- Bond_009[m] (bond009mat@gateway/shell/matrix.org/x-garqfbyxejwqtldk) a quitté (*.net *.split) 2021-01-29 14:00:27 <-- panpernicek[m] (panpernice@gateway/shell/matrix.org/x-gkqhfulxugavbzwu) a quitté (*.net *.split) 2021-01-29 14:00:31 <-- Tux (~tux@unaffiliated/tux) a quitté (*.net *.split) 2021-01-29 14:00:32 <-- asterix1324[m]1 (asterix12@gateway/shell/matrix.org/x-joquozugauzvbwqw) a quitté (*.net *.split) 2021-01-29 14:00:32 <-- uaon[m] (uaonmatrix@gateway/shell/matrix.org/x-bwmypaclezlxmpfz) a quitté (*.net *.split) 2021-01-29 14:00:34 <-- JuniorJPDJ (juniorjp1@gateway/shell/matrix.org/x-eojuobdeawsskddd) a quitté (*.net *.split) 2021-01-29 14:00:34 <-- mgrech_ (~mgrech@178-189-193-250.adsl.highway.telekom.at) a quitté (*.net *.split) 2021-01-29 14:00:35 <-- ichbinjoe (~ichbinjoe@2600:1700:3ec7:2103:1298:36ff:fea5:8599) a quitté (*.net *.split) 2021-01-29 14:00:49 -- WizardCM- est maintenant connu sous le nom WizardCM 2021-01-29 14:01:14 --> Bond_009[m] (bond009mat@gateway/shell/matrix.org/x-garqfbyxejwqtldk) a rejoint #mcdevs 2021-01-29 14:01:14 --> panpernicek[m] (panpernice@gateway/shell/matrix.org/x-gkqhfulxugavbzwu) a rejoint #mcdevs 2021-01-29 14:01:14 --> Tux (~tux@unaffiliated/tux) a rejoint #mcdevs 2021-01-29 14:01:26 --> asterix1324[m]1 (asterix12@gateway/shell/matrix.org/x-joquozugauzvbwqw) a rejoint #mcdevs 2021-01-29 14:01:26 --> uaon[m] (uaonmatrix@gateway/shell/matrix.org/x-bwmypaclezlxmpfz) a rejoint #mcdevs 2021-01-29 14:01:26 --> JuniorJPDJ (juniorjp1@gateway/shell/matrix.org/x-eojuobdeawsskddd) a rejoint #mcdevs 2021-01-29 14:01:26 --> mgrech_ (~mgrech@178-189-193-250.adsl.highway.telekom.at) a rejoint #mcdevs 2021-01-29 14:01:26 --> ichbinjoe (~ichbinjoe@2600:1700:3ec7:2103:1298:36ff:fea5:8599) a rejoint #mcdevs 2021-01-29 14:01:29 <-- JuniorJPDJ (juniorjp1@gateway/shell/matrix.org/x-eojuobdeawsskddd) a quitté (Max SendQ exceeded) 2021-01-29 14:03:04 <-- smoke42 (smoke42mat@gateway/shell/matrix.org/x-zsubempbjjxoyvlv) a quitté (*.net *.split) 2021-01-29 14:03:37 <-- iceiix_ (uid478759@gateway/web/irccloud.com/x-prwtwatxvwnaluoa) a quitté (Ping timeout: 264 seconds) 2021-01-29 14:03:42 <-- panpernicek[m] (panpernice@gateway/shell/matrix.org/x-gkqhfulxugavbzwu) a quitté (Ping timeout: 244 seconds) 2021-01-29 14:03:49 --> smoke42 (smoke42mat@gateway/shell/matrix.org/x-zsubempbjjxoyvlv) a rejoint #mcdevs 2021-01-29 14:04:12 <-- Bond_009[m] (bond009mat@gateway/shell/matrix.org/x-garqfbyxejwqtldk) a quitté (Ping timeout: 244 seconds) 2021-01-29 14:04:26 <-- asterix1324[m]1 (asterix12@gateway/shell/matrix.org/x-joquozugauzvbwqw) a quitté (Ping timeout: 265 seconds) 2021-01-29 14:04:48 <-- asterix1324 (asterix132@gateway/shell/matrix.org/x-aackiwducoowhbcp) a quitté (Ping timeout: 260 seconds) 2021-01-29 14:04:55 <-- uaon[m] (uaonmatrix@gateway/shell/matrix.org/x-bwmypaclezlxmpfz) a quitté (Ping timeout: 265 seconds) 2021-01-29 14:04:55 <-- smoke42 (smoke42mat@gateway/shell/matrix.org/x-zsubempbjjxoyvlv) a quitté (Ping timeout: 258 seconds) 2021-01-29 14:05:18 <-- chibill (chibillmat@gateway/shell/matrix.org/x-dwbkscwurlrxilka) a quitté (Ping timeout: 268 seconds) 2021-01-29 14:06:33 --> iceiix_ (uid478759@gateway/web/irccloud.com/x-nltcctxggofckvqz) a rejoint #mcdevs 2021-01-29 14:31:02 --> jkrejcha (~jkrejcha@c-67-189-8-64.hsd1.wa.comcast.net) a rejoint #mcdevs 2021-01-29 14:42:00 --> uaon[m] (uaonmatrix@gateway/shell/matrix.org/x-ckqxcjiansogstkn) a rejoint #mcdevs 2021-01-29 14:48:40 <-- uaon[m] (uaonmatrix@gateway/shell/matrix.org/x-ckqxcjiansogstkn) a quitté (Ping timeout: 260 seconds) 2021-01-29 15:14:32 --> JuniorJPDJ (juniorjp1@gateway/shell/matrix.org/x-jmqaucllkkvkotmc) a rejoint #mcdevs 2021-01-29 15:37:13 --> smoke42 (smoke42mat@gateway/shell/matrix.org/x-tjbtxjuqjafzvvnm) a rejoint #mcdevs 2021-01-29 15:37:13 --> Bond_009[m] (bond009mat@gateway/shell/matrix.org/x-lbyiurywgpwvbuhs) a rejoint #mcdevs 2021-01-29 15:37:13 --> panpernicek[m] (panpernice@gateway/shell/matrix.org/x-fdbmtqxifmgsmeyc) a rejoint #mcdevs 2021-01-29 15:37:13 --> yangm (yanyetanot@gateway/shell/matrix.org/x-rqsdgwicptysdasj) a rejoint #mcdevs 2021-01-29 15:37:14 --> asterix1324[m] (asterix12@gateway/shell/matrix.org/x-gstitgjrvpeizypl) a rejoint #mcdevs 2021-01-29 15:37:14 --> chibill (chibillmat@gateway/shell/matrix.org/x-tfpujrijfythwizo) a rejoint #mcdevs 2021-01-29 15:37:14 --> asterix1324 (asterix132@gateway/shell/matrix.org/x-wauxdvdztarfvszr) a rejoint #mcdevs 2021-01-29 15:37:20 --> uaon[m] (uaonmatrix@gateway/shell/matrix.org/x-kibuybuvzmsukyeq) a rejoint #mcdevs 2021-01-29 15:43:52 --> camotoy_ (~camotoy@104-4-111-192.lightspeed.bcvloh.sbcglobal.net) a rejoint #mcdevs 2021-01-29 15:44:44 <-- camotoy (~camotoy@2600:1700:5531:3d80:ff:60ff:fe24:68ed) a quitté (Ping timeout: 240 seconds) 2021-01-29 15:52:29 <-- lxeiqr (~lxeiqr@37.30.51.18.nat.umts.dynamic.t-mobile.pl) a quitté (Ping timeout: 265 seconds) 2021-01-29 15:52:49 --> lxeiqr (~lxeiqr@37.30.54.151.nat.umts.dynamic.t-mobile.pl) a rejoint #mcdevs 2021-01-29 16:00:22 <-- lxeiqr (~lxeiqr@37.30.54.151.nat.umts.dynamic.t-mobile.pl) a quitté (Ping timeout: 260 seconds) 2021-01-29 16:00:56 --> lxeiqr (~lxeiqr@37.30.59.184.nat.umts.dynamic.t-mobile.pl) a rejoint #mcdevs 2021-01-29 16:08:11 <-- PolarizedIons (~Polarized@unaffiliated/polarizedions) a quitté (Read error: Connection reset by peer) 2021-01-29 16:08:32 --> PolarizedIons (~Polarized@unaffiliated/polarizedions) a rejoint #mcdevs 2021-01-29 16:53:50 --> DefektIV (~Defective@public-gprs210201.centertel.pl) a rejoint #mcdevs 2021-01-29 17:08:51 <-- DefektIV (~Defective@public-gprs210201.centertel.pl) a quitté (Quit: Leaving) 2021-01-29 22:59:13 <-- lxeiqr (~lxeiqr@37.30.59.184.nat.umts.dynamic.t-mobile.pl) a quitté (Ping timeout: 260 seconds) 2021-01-29 23:01:06 --> lxeiqr (~lxeiqr@37.30.51.235.nat.umts.dynamic.t-mobile.pl) a rejoint #mcdevs 2021-01-30 00:08:01 --> M4 (~M4@cpe-70-119-109-153.tx.res.rr.com) a rejoint #mcdevs 2021-01-30 04:15:24 <-- electronicboy (~electroni@atlas.valaria.pw) a quitté (Ping timeout: 240 seconds) 2021-01-30 05:13:29 <-- M4 (~M4@cpe-70-119-109-153.tx.res.rr.com) a quitté (Remote host closed the connection) 2021-01-30 06:11:58 --> electronicboy (~electroni@atlas.valaria.pw) a rejoint #mcdevs 2021-01-30 10:33:02 <-- ichbinjoe (~ichbinjoe@2600:1700:3ec7:2103:1298:36ff:fea5:8599) a quitté (Max SendQ exceeded) 2021-01-30 10:33:16 --> ichbinjoe (~ichbinjoe@99.144.118.221) a rejoint #mcdevs 2021-01-30 10:53:15 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-01-30 10:53:33 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-01-30 13:01:05 <-- electronicboy (~electroni@atlas.valaria.pw) a quitté (Ping timeout: 240 seconds) 2021-01-30 14:38:05 --> electronicboy (~electroni@atlas.valaria.pw) a rejoint #mcdevs 2021-01-30 14:58:52 <-- jkrejcha (~jkrejcha@c-67-189-8-64.hsd1.wa.comcast.net) a quitté (Ping timeout: 268 seconds) 2021-01-30 16:43:42 --> jkrejcha (~jkrejcha@c-67-189-8-64.hsd1.wa.comcast.net) a rejoint #mcdevs 2021-01-30 17:06:17 <-- MisterVector (Vector@cpe-172-90-152-76.socal.res.rr.com) a quitté (Read error: Connection reset by peer) 2021-01-30 17:06:32 --> MisterVector (Vector@cpe-172-90-152-76.socal.res.rr.com) a rejoint #mcdevs 2021-01-30 17:45:57 -- wInNy est maintenant connu sous le nom winny 2021-01-30 18:41:14 --> uis_ (~uis@uigors.tk) a rejoint #mcdevs 2021-01-30 18:41:42 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 265 seconds) 2021-01-30 19:40:53 -- uis_ est maintenant connu sous le nom uis 2021-01-30 19:44:43 --> barneygale (~barneygal@cpc93788-hari17-2-0-cust405.20-2.cable.virginm.net) a rejoint #mcdevs 2021-01-30 20:47:22 <-- Fenhl (sid30770@gateway/web/irccloud.com/x-verlwbzrbqkczmmj) a quitté (Read error: Connection reset by peer) 2021-01-30 20:47:44 --> Fenhl (sid30770@gateway/web/irccloud.com/x-ahjcnrqzifpqtefh) a rejoint #mcdevs 2021-01-30 20:47:44 -- Mode #mcdevs [+v Fenhl] par ChanServ 2021-01-30 21:12:26 MiniDigger seens like wiki is being slow today? I first thought it was just me trying to read an old page, but now all requests are timeing out with a 504 2021-01-30 21:14:22 MiniDigger tktech mind taking a look? 2021-01-30 21:16:47 <-- MisterVector (Vector@cpe-172-90-152-76.socal.res.rr.com) a quitté (Ping timeout: 264 seconds) 2021-01-30 21:19:59 barneygale Think I have a `minecraft-data` implementation in Python at last. Its not particularly clever (in the codegen 'Switch' is a type, not an if/else) but hey, means I won't need to maintain a parallel implementation of everything in Quarry! 2021-01-30 23:39:12 tktech wiki.vg might be unreachable for a few seconds here and there. 2021-01-31 00:09:05 --> Tides (~Tides@ool-45758743.dyn.optonline.net) a rejoint #mcdevs 2021-01-31 00:12:27 <-- Tides (~Tides@ool-45758743.dyn.optonline.net) a quitté (Client Quit) 2021-01-31 00:15:57 rom1504 barneygale do you mean the protocol ? 2021-01-31 00:16:10 barneygale yeah 2021-01-31 00:16:15 rom1504 Cool 2021-01-31 00:17:11 rom1504 https://github.com/ProtoDef-io/ProtoDef#implementations would be nice to add it in this list 2021-01-31 00:17:28 barneygale i'll submit a PR when it's ready 2021-01-31 00:32:23 <-- deltab (~deltab@95.154.230.49) a quitté (Ping timeout: 264 seconds) 2021-01-31 00:34:15 --> deltab (~deltab@95.154.230.49) a rejoint #mcdevs 2021-01-31 01:30:01 tktech pokechu22, the wrong IP issue should be fixed for real (TM) 2021-01-31 01:30:15 tktech Now what broke themes.. 2021-01-31 01:35:03 tktech MiniDigger, looks like an abusive Russian crawler started hitting the wiki, https://i.imgur.com/W7VI8uD.png 2021-01-31 02:17:25 <-- jkrejcha (~jkrejcha@c-67-189-8-64.hsd1.wa.comcast.net) a quitté (Ping timeout: 240 seconds) 2021-01-31 02:58:37 --> Bruh_BR (2db6620e@gateway/web/cgi-irc/kiwiirc.com/ip.45.182.98.14) a rejoint #mcdevs 2021-01-31 02:58:58 Bruh_BR Ah, hello? 2021-01-31 03:06:05 Bruh_BR bruh 2021-01-31 03:11:25 <-- Bruh_BR (2db6620e@gateway/web/cgi-irc/kiwiirc.com/ip.45.182.98.14) a quitté #mcdevs 2021-01-31 06:05:33 --> bbrabbit (~bbrabbit@c-67-166-146-84.hsd1.ca.comcast.net) a rejoint #mcdevs 2021-01-31 06:06:50 --> bbrabbit_ (~bbrabbit@c-67-166-146-84.hsd1.ca.comcast.net) a rejoint #mcdevs 2021-01-31 06:09:26 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2021-01-31 06:10:45 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 256 seconds) 2021-01-31 06:10:46 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2021-01-31 06:10:55 <-- bbrabbit (~bbrabbit@c-67-166-146-84.hsd1.ca.comcast.net) a quitté (Ping timeout: 272 seconds) 2021-01-31 06:12:05 <-- bbrabbit_ (~bbrabbit@c-67-166-146-84.hsd1.ca.comcast.net) a quitté (Ping timeout: 240 seconds) 2021-01-31 09:10:41 barneygale \o/ it seems to be reading packets pretty happily now! tomorrow I'll wire up a proxy and exercise the writing code more thoroughly 2021-01-31 09:28:00 <-- barneygale (~barneygal@cpc93788-hari17-2-0-cust405.20-2.cable.virginm.net) a quitté (Ping timeout: 256 seconds) 2021-01-31 11:37:57 --> loser__ (~loser@176.88.95.97) a rejoint #mcdevs 2021-01-31 11:38:27 <-- loser_ (~loser@176.88.95.97) a quitté (Ping timeout: 272 seconds) 2021-01-31 11:43:19 --> loser_ (~loser@176.88.95.97) a rejoint #mcdevs 2021-01-31 11:43:19 <-- loser__ (~loser@176.88.95.97) a quitté (Ping timeout: 265 seconds) 2021-01-31 11:55:54 Proximyst Wiki is now 502ing. Is this also because of the crawlers? :/ 2021-01-31 12:50:51 tktech Wiki should be fine now 2021-01-31 12:51:21 tktech Huwai's ultra-aggressive bot was hitting every revision and combination of revisions 2021-01-31 12:51:37 tktech It's now being redirected to a 17GB NASA image 2021-01-31 12:52:46 tktech Nightly backups will be available again when I wake up, don't have time to do that right now 2021-01-31 12:56:36 Sainan Isn't that illegal for Huwai to do? Because I find it unethical at least to write a crawler that you not only notice but that effectively (D)DoSes you. 2021-01-31 12:58:33 tktech You say that like Chinese IT megacorps are known for their best practices. 2021-01-31 12:58:46 tktech https://twitter.com/hashtag/PetalBot?f=live 2021-01-31 12:58:53 tktech At least it identifies itself so it's trivial to block. 2021-01-31 13:01:25 --> Me4502 (~quassel@unaffiliated/me4502) a rejoint #mcdevs 2021-01-31 13:01:38 Sainan Maybe in 40 years, the lawmakers or FCC or whomever might say that it is a illegal to ignore the robots.txt xD 2021-01-31 13:02:02 <-- Me4502 (~quassel@unaffiliated/me4502) a quitté (Client Quit) 2021-01-31 13:03:13 tktech Again, why would a China megacorp care? 2021-01-31 13:04:39 Sainan idk, because it's illegal and they'll be punished? if not, we just build the inverse great firewall of china. 2021-01-31 13:05:59 tktech https://i.imgur.com/rtzI94b.png Literally more traffic than every other bot and user combined 2021-01-31 13:08:00 Sainan But you Winnie-the-pooh'd now, and so the inverse firewall grows ;) 2021-01-31 13:16:36 rom1504 "illegal" depends on the country 2021-01-31 13:18:59 rom1504 making them download 17GB of data at every call is interesting. But I guess they have some checks against that. Would be fun to build anticrawlers 2021-01-31 13:19:37 rom1504 like point them to pages full of unique links that eventually make them download lot of 2MB randomly generated files 2021-01-31 13:20:33 rom1504 the problem is that this would be costly to host though 2021-01-31 13:21:24 rom1504 would need to be optimized to kill their infra as fast as possible to minimize the hosting cost of the reverse attack 2021-01-31 13:23:42 Sainan Or you just beat fire with fire: Take their IP, ddos it. 2021-01-31 13:28:31 Sainan Actually, what about a reverse slow loris? Waste its outcoming connections pool by sending the reponse in very small chunks 2021-01-31 13:36:31 rom1504 yeah a combination of such techniques should be interesting 2021-01-31 13:36:43 rom1504 they can have protection against any of that but maybe not all 2021-01-31 13:37:30 rom1504 I think the first layer should be "try N techniques, and see which one has an impact (measure by their speed of crawling, their speed of disconnection ...)" 2021-01-31 13:37:39 rom1504 then apply the most successful ones 2021-01-31 13:38:19 Majavah maybe something like https://github.com/skeeto/endlessh but for http? 2021-01-31 13:38:53 rom1504 yeah sounds like what Sainan was mentionning 2021-01-31 13:39:35 rom1504 I bet this topic is highly studied actually, at least because to build a serious crawler (like search engines ones) you need to take all these potential attacks into account 2021-01-31 13:47:12 <-- mgrech_ (~mgrech@178-189-193-250.adsl.highway.telekom.at) a quitté (Ping timeout: 265 seconds) 2021-01-31 14:19:52 <-- loser_ (~loser@176.88.95.97) a quitté (Ping timeout: 246 seconds) 2021-01-31 14:22:07 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-01-31 14:22:25 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-01-31 14:41:43 --> loser_ (~loser@176.88.90.124) a rejoint #mcdevs 2021-01-31 15:30:24 --> jkrejcha (~jkrejcha@c-67-189-8-64.hsd1.wa.comcast.net) a rejoint #mcdevs 2021-01-31 15:40:05 --> TheMode (4ec1f763@78.193.247.99) a rejoint #mcdevs 2021-01-31 15:42:02 TheMode Hello, is there any reason why there isn't any packet to modify the position of multiple entities at once? Similarly to MultiBlockChange 2021-01-31 15:49:26 --> gravitinos (4a0c3a9a@bras-base-burlon0309w-grc-12-74-12-58-154.dsl.bell.ca) a rejoint #mcdevs 2021-01-31 15:50:37 gravitinos hey, i was wondering if anyone would be able t help me understand what the verify token actually does in the encryption process? 2021-01-31 15:53:28 <-- gravitinos (4a0c3a9a@bras-base-burlon0309w-grc-12-74-12-58-154.dsl.bell.ca) a quitté (Client Quit) 2021-01-31 15:54:43 --> gravitinos (4a0c3a9a@bras-base-burlon0309w-grc-12-74-12-58-154.dsl.bell.ca) a rejoint #mcdevs 2021-01-31 15:54:55 <-- gravitinos (4a0c3a9a@bras-base-burlon0309w-grc-12-74-12-58-154.dsl.bell.ca) a quitté (Client Quit) 2021-01-31 15:55:20 --> gravitinos (4a0c3a9a@bras-base-burlon0309w-grc-12-74-12-58-154.dsl.bell.ca) a rejoint #mcdevs 2021-01-31 16:14:41 <-- gravitinos (4a0c3a9a@bras-base-burlon0309w-grc-12-74-12-58-154.dsl.bell.ca) a quitté (Ping timeout: 248 seconds) 2021-01-31 16:17:38 TheMode Because I am getting performance issue when trying to have too many players synchronizing themselves. It does cap at around 500/600 because the number of packet increases exponentially, and obviously those are below the threshold so no compression possible 2021-01-31 16:19:12 --> gravitinos (4a0c3a9a@bras-base-burlon0309w-grc-12-74-12-58-154.dsl.bell.ca) a rejoint #mcdevs 2021-01-31 16:23:45 <-- gravitinos (4a0c3a9a@bras-base-burlon0309w-grc-12-74-12-58-154.dsl.bell.ca) a quitté (Ping timeout: 248 seconds) 2021-01-31 17:00:07 <-- uaon[m] (uaonmatrix@gateway/shell/matrix.org/x-kibuybuvzmsukyeq) a quitté (Quit: Idle for 30+ days) 2021-01-31 17:12:07 rom1504 if your only issue is network then there is no issue 2021-01-31 17:12:28 rom1504 network is not really the bottleneck for minecraft 2021-01-31 17:16:12 TheMode Profiling showed me that the bottleneck is network writing. Removing the line that write to the channel allow me to have thousands of connection (I do flush once per tick) 2021-01-31 17:18:34 rom1504 yeah so that means you didn't implement most minecraft features 2021-01-31 17:19:02 TheMode Synchronizing 500 players mean sending 250k packets every tick. It could easily be reduced to 500 compressed packets. But maybe that there is a reason why it hasn't been implemented 2021-01-31 17:19:27 rom1504 but anyway, the packets that minecraft uses are not up to debate, mojang decides them for any reason and we need to figure out ways to make it work 2021-01-31 17:19:51 rom1504 the main reason is mojang doesn't optimize for performance 2021-01-31 17:20:20 rom1504 or at the very least not for having big servers 2021-01-31 17:21:04 rom1504 TheMode: are you trying to scale as much as possible the number of players in a single area ? 2021-01-31 17:21:12 TheMode It is what I expected, but it is a weird decision considering that the multi block change packet has the exact same goal, and that they do try to save a few byte in some place of the protocol 2021-01-31 17:21:38 rom1504 yeah it's not particularly coherent 2021-01-31 17:21:58 rom1504 maybe you could consider sending packets less often for players that are less close ? 2021-01-31 17:22:01 TheMode Yes, I am able to go up to 3-7k concurrent connections when syncing between them is not necessary (or small), but having all of them in a single place does hit the bandwidth by a lot 2021-01-31 17:22:21 rom1504 so players that are far way would be less precisely syncronized, but that's probably ok 2021-01-31 17:22:38 TheMode Yes it is a direction I have been thinking of, the other would be to use the velocity packet to do a kind of movement prediction to reduce the number of packets 2021-01-31 17:48:30 --> barneygale (~barneygal@cpc93788-hari17-2-0-cust405.20-2.cable.virginm.net) a rejoint #mcdevs 2021-01-31 17:57:16 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-01-31 17:57:30 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-01-31 18:20:27 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-01-31 18:20:45 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-01-31 18:53:36 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-01-31 18:53:50 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-01-31 19:08:29 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-01-31 19:08:43 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-01-31 19:37:36 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-01-31 19:39:48 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-01-31 19:43:34 <-- TheMode (4ec1f763@78.193.247.99) a quitté (Quit: Ping timeout (120 seconds)) 2021-01-31 20:08:17 <-- lxeiqr (~lxeiqr@37.30.51.235.nat.umts.dynamic.t-mobile.pl) a quitté (Ping timeout: 256 seconds) 2021-01-31 20:10:04 --> lxeiqr (~lxeiqr@37.30.52.235.nat.umts.dynamic.t-mobile.pl) a rejoint #mcdevs 2021-01-31 20:16:21 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-01-31 20:16:38 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-01-31 20:20:06 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-01-31 20:22:23 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-01-31 20:46:37 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-01-31 20:46:51 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-01-31 20:52:07 <-- commandz (~commandz@199-15-107-199-15-107-244.cpe.sparklight.net) a quitté (Remote host closed the connection) 2021-01-31 20:57:05 --> commandz (~commandz@199-15-107-199-15-107-244.cpe.sparklight.net) a rejoint #mcdevs 2021-01-31 20:58:41 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-01-31 20:58:56 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-01-31 21:15:17 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-01-31 21:15:35 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-01-31 21:27:20 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-01-31 21:27:38 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-01-31 21:33:09 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-01-31 21:33:25 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-01-31 21:38:41 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-01-31 21:44:13 barneygale rom1504: https://github.com/barneygale/quarry-ng - this will be integrated back into quarry proper in due course 2021-01-31 21:47:41 barneygale (probably a few weeks from now) 2021-01-31 21:55:31 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-01-31 21:58:43 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-01-31 21:58:58 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-01-31 22:01:21 rom1504 barneygale: which file produce the parser / serializer ? (You did a protodef compiler targeting python right ?) 2021-01-31 22:01:42 rom1504 Ah build.py 2021-01-31 22:01:59 barneygale I saw Hans' from a few years ago but must have missed others 2021-01-31 22:02:13 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-01-31 22:02:24 barneygale My approach is very basic but there's room to do something faster later 2021-01-31 22:02:28 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-01-31 22:02:57 rom1504 It's astonishingly short 2021-01-31 22:03:17 rom1504 There are basically 2 protodef compiler that are maintained these days 2021-01-31 22:03:32 rom1504 One is node-protodef that target js 2021-01-31 22:03:58 rom1504 The other is nickelpro one in targeting c++ (written in python) 2021-01-31 22:04:05 rom1504 And now yours then 2021-01-31 22:04:49 barneygale My "compiled code" is just an expression of the type tree, mind. 2021-01-31 22:04:53 barneygale Works well enough for now 2021-01-31 22:05:04 rom1504 https://github.com/barneygale/quarry-ng/blob/main/quarry/native.py 2021-01-31 22:05:14 rom1504 Ah yeah I see, it's kind of an interpreter 2021-01-31 22:05:24 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-01-31 22:05:38 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-01-31 22:05:55 rom1504 It's probably ok because anyway python is not super fast so I'm not sure if you would gain a lot by compiling 2021-01-31 22:06:45 rom1504 https://github.com/SpockBotMC/RikerBot/blob/master/mcd2cpp/protocol.py that's nickelpro one just fyi 2021-01-31 22:06:51 barneygale https://raw.githubusercontent.com/barneygale/quarry-ng/main/quarry/pc/data/v0754.py the generated code 2021-01-31 22:06:57 barneygale thanks 2021-01-31 22:07:16 rom1504 He wrote the compiler in python, generating c++ and then wrapping the result in python again 2021-01-31 22:08:21 rom1504 Yeah I see you're generated code is straight forward since it's semi-interpreted 2021-01-31 22:08:29 rom1504 That's a simple approach 2021-01-31 22:08:53 barneygale Did nickelpro and I both go for star trek: tng references with our projects? that's a bit mad 2021-01-31 22:09:55 rom1504 Fun 2021-01-31 22:10:49 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-01-31 22:11:54 rom1504 Anyway, I'm happy this protocol.json is useful beyond our js implementation 2021-01-31 22:12:40 rom1504 Do you know what people build with quarry ? Do you have any plan yourself with that new improved lib you're building ? 2021-01-31 22:13:00 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-01-31 22:14:50 barneygale mainly reduce the burden of new releases :D 2021-01-31 22:15:11 barneygale as nowadays I have to be a bit more careful with my free time than when quarry started 2021-01-31 22:15:41 barneygale Quarry does get used by a few things: https://github.com/barneygale/quarry/network/dependents 2021-01-31 22:16:30 barneygale I'm also moving the networking from twisted to asyncio, so it will be all modern and shiny 2021-01-31 22:16:31 rom1504 Interesting 2021-01-31 22:18:09 barneygale I had to hack a couple of array types by the way, as I couldn't make them work with my scheme: https://github.com/barneygale/quarry-ng/blob/main/build.py#L153-L156 2021-01-31 22:19:26 barneygale Because they involve deferring to a Container, but somehow interrupting it if its first item matches a value. Instead I just re-implemented the container logic in the types. 2021-01-31 22:19:57 barneygale Works well enough for now because those types aren't particularly generic 2021-01-31 22:27:16 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-01-31 22:29:29 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-01-31 22:32:47 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-01-31 22:33:03 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-01-31 22:42:48 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-01-31 22:43:05 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-01-31 22:50:17 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-01-31 22:50:32 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-01-31 22:59:48 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-01-31 23:00:05 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-01-31 23:12:31 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-01-31 23:18:34 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-01-31 23:31:48 <-- lxeiqr (~lxeiqr@37.30.52.235.nat.umts.dynamic.t-mobile.pl) a quitté (Remote host closed the connection) 2021-01-31 23:32:03 <-- electronicboy (~electroni@atlas.valaria.pw) a quitté (Remote host closed the connection) 2021-01-31 23:32:25 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-01-31 23:35:35 --> mgrech_ (~mgrech@178-189-193-250.adsl.highway.telekom.at) a rejoint #mcdevs 2021-01-31 23:55:04 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-01 00:04:38 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-01 00:04:53 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-01 00:37:06 --> bildramer1 (~bildramer@2a02:587:6233:bc00:9c32:6646:9dde:f493) a rejoint #mcdevs 2021-02-01 00:38:37 <-- bildramer (~bildramer@2a02:587:6231:fb00:ac9b:cca1:4258:dfa9) a quitté (Ping timeout: 272 seconds) 2021-02-01 00:39:24 -- bildramer1 est maintenant connu sous le nom bildramer 2021-02-01 00:39:32 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-01 00:39:47 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-01 00:43:09 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-02-01 00:43:25 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-01 00:44:13 <-- iczero (iczero@hellomouse/dev/iczero) a quitté (Quit: rip) 2021-02-01 00:45:57 --> iczero (iczero@hellomouse/dev/iczero) a rejoint #mcdevs 2021-02-01 00:51:30 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-01 00:51:44 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-01 00:55:03 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-02-01 01:09:49 <-- john2gb (~john2gb@94-225-47-8.access.telenet.be) a quitté (Ping timeout: 246 seconds) 2021-02-01 01:11:19 --> john2gb (~john2gb@94-225-47-8.access.telenet.be) a rejoint #mcdevs 2021-02-01 01:20:44 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-01 01:54:32 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-01 01:54:50 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-01 02:12:04 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-01 02:12:20 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-01 02:41:33 <-- xlei (~akans@unaffiliated/xlei) a quitté (Ping timeout: 256 seconds) 2021-02-01 02:42:45 <-- loser_ (~loser@176.88.90.124) a quitté (Ping timeout: 240 seconds) 2021-02-01 02:44:28 --> loser_ (~loser@176.88.95.179) a rejoint #mcdevs 2021-02-01 03:25:05 <-- mgrech_ (~mgrech@178-189-193-250.adsl.highway.telekom.at) a quitté (Ping timeout: 240 seconds) 2021-02-01 03:34:36 <-- sudden (~lax@unaffiliated/laxask) a quitté (Ping timeout: 240 seconds) 2021-02-01 03:35:45 --> sudden (~lax@unaffiliated/laxask) a rejoint #mcdevs 2021-02-01 04:46:29 <-- jkrejcha (~jkrejcha@c-67-189-8-64.hsd1.wa.comcast.net) a quitté (Ping timeout: 265 seconds) 2021-02-01 06:06:22 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2021-02-01 06:10:29 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 272 seconds) 2021-02-01 06:10:29 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2021-02-01 07:04:14 <-- camotoy_ (~camotoy@104-4-111-192.lightspeed.bcvloh.sbcglobal.net) a quitté (Ping timeout: 264 seconds) 2021-02-01 07:07:00 --> camotoy (~camotoy@104-4-111-192.lightspeed.bcvloh.sbcglobal.net) a rejoint #mcdevs 2021-02-01 07:26:21 <-- alexge50 (~alexge50@unaffiliated/alexge50) a quitté (Ping timeout: 264 seconds) 2021-02-01 08:15:20 --> alexge50 (~alexge50@unaffiliated/alexge50) a rejoint #mcdevs 2021-02-01 08:33:14 <-- alexge50 (~alexge50@unaffiliated/alexge50) a quitté (Quit: ZNC 1.8.2 - https://znc.in) 2021-02-01 08:33:46 --> alexge50 (~alexge50@unaffiliated/alexge50) a rejoint #mcdevs 2021-02-01 08:35:54 --> lxeiqr (~lxeiqr@37.30.52.235.nat.umts.dynamic.t-mobile.pl) a rejoint #mcdevs 2021-02-01 08:37:46 <-- Proximyst (~Proximyst@baldr.proximyst.com) a quitté (Remote host closed the connection) 2021-02-01 08:37:56 --> Proximyst (~Proximyst@baldr.proximyst.com) a rejoint #mcdevs 2021-02-01 08:42:38 -- Processus42_ est maintenant connu sous le nom Processus42 2021-02-01 08:45:31 <-- lxeiqr (~lxeiqr@37.30.52.235.nat.umts.dynamic.t-mobile.pl) a quitté (Remote host closed the connection) 2021-02-01 09:21:52 <-- barneygale (~barneygal@cpc93788-hari17-2-0-cust405.20-2.cable.virginm.net) a quitté (Ping timeout: 272 seconds) 2021-02-01 10:35:50 <-- Proximyst (~Proximyst@baldr.proximyst.com) a quitté (Remote host closed the connection) 2021-02-01 10:36:01 --> Proximyst (~Proximyst@baldr.proximyst.com) a rejoint #mcdevs 2021-02-01 12:04:38 --> stackotter (~stackotte@192.183.220.203.dial.dynamic.acc01-kepl-wnb.comindico.com.au) a rejoint #mcdevs 2021-02-01 12:08:06 stackotter hi, on wiki.vg is there a way to view the protocol for 1.16.1 or is it only possible to see the diff from 1.15.2 to 1.16.1? 2021-02-01 12:10:17 Not-77e "Map Format" has been edited by Kaleb Bruwer [+0] 2021-02-01 12:52:09 MiniDigger stackotter you should be able to view any given wiki ref 2021-02-01 12:52:52 MiniDigger https://wiki.vg/Protocol_version_numbers 2021-02-01 12:52:56 MiniDigger this page has links 2021-02-01 12:53:10 --> mgrech_ (~mgrech@178-189-193-250.adsl.highway.telekom.at) a rejoint #mcdevs 2021-02-01 13:04:11 stackotter that's the page i found, and when i click the link titled "page" for 1.16.1 it brings me to a page detailing the differences between 1.16.1 and 1.15.2 (the latest previous stable version) 2021-02-01 13:05:58 stackotter 1.16.3 seems to be the first 1.16 version that shows a full proper protocol page with all the details in one place 2021-02-01 13:07:21 stackotter i know that when 1.16.1 was the latest version it has a page with all the details and everything but now it's just a diff 2021-02-01 13:07:48 stackotter well not a diff, but its counting it as a prerelease protocol 2021-02-01 13:21:10 --> xlei (znc@unaffiliated/xlei) a rejoint #mcdevs 2021-02-01 13:39:45 <-- alexge50 (~alexge50@unaffiliated/alexge50) a quitté (Ping timeout: 240 seconds) 2021-02-01 13:56:30 <-- deltab (~deltab@95.154.230.49) a quitté (Ping timeout: 256 seconds) 2021-02-01 14:05:11 --> deltab (~deltab@95.154.230.49) a rejoint #mcdevs 2021-02-01 14:57:59 --> alexge50 (~alexge50@unaffiliated/alexge50) a rejoint #mcdevs 2021-02-01 15:20:40 --> jkrejcha (~jkrejcha@c-67-189-8-64.hsd1.wa.comcast.net) a rejoint #mcdevs 2021-02-01 18:28:10 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-01 18:28:26 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-01 18:43:13 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-01 18:43:32 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-01 18:57:54 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-01 18:58:10 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-01 18:58:34 rom1504 check the pre release page 2021-02-01 19:07:43 <-- mgrech_ (~mgrech@178-189-193-250.adsl.highway.telekom.at) a quitté (Quit: mgrech_) 2021-02-01 19:08:53 <-- Tux (~tux@unaffiliated/tux) a quitté (Ping timeout: 244 seconds) 2021-02-01 19:10:27 <-- JuniorJPDJ (juniorjp1@gateway/shell/matrix.org/x-jmqaucllkkvkotmc) a quitté (Ping timeout: 244 seconds) 2021-02-01 19:13:59 --> Tux (~tux@2604:180:0:59d::f1c1) a rejoint #mcdevs 2021-02-01 19:13:59 <-- Tux (~tux@2604:180:0:59d::f1c1) a quitté (Changing host) 2021-02-01 19:13:59 --> Tux (~tux@unaffiliated/tux) a rejoint #mcdevs 2021-02-01 19:24:13 --> JuniorJPDJ (juniorjp1@gateway/shell/matrix.org/x-gvbubkrwdgolafml) a rejoint #mcdevs 2021-02-01 19:35:10 +pokechu22 stackotter: No, 1.16.1 didn't have a page with all the details merged in; it took a while for the pre-release documentation to be merged into the release documentation, and it only happened in 1.16.3 - see https://wiki.vg/index.php?title=Protocol&action=history 2021-02-01 20:14:31 +pokechu22 That said, the protocol changes from 1.16.1 to 1.16.2 can be found here: https://pokechu22.github.io/Burger/diff_1.16.1_1.16.2.html#packets (a shift in packet IDs which burger makes a bit of a mess of) and then 1.16.2 to 1.16.3 had no changes (https://pokechu22.github.io/Burger/diff_1.16.2_1.16.3-rc1.html and https://pokechu22.github.io/Burger/diff_1.16.3-rc1_1.16.3.html) 2021-02-01 20:55:04 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-01 20:55:22 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-01 21:21:32 <-- john2gb (~john2gb@94-225-47-8.access.telenet.be) a quitté (Read error: Connection reset by peer) 2021-02-01 21:22:28 --> john2gb (~john2gb@94-225-47-8.access.telenet.be) a rejoint #mcdevs 2021-02-01 21:26:04 <-- asterix1324[m] (asterix12@gateway/shell/matrix.org/x-gstitgjrvpeizypl) a quitté (*.net *.split) 2021-02-01 21:32:09 --> asterix1324[m] (asterix12@gateway/shell/matrix.org/x-lvbcixltbddtnzee) a rejoint #mcdevs 2021-02-01 22:09:06 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-01 22:09:25 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-02 00:41:35 --> Tides (~Tides@ool-45758743.dyn.optonline.net) a rejoint #mcdevs 2021-02-02 01:02:00 --> mgrech (~mgrech@178-189-193-250.adsl.highway.telekom.at) a rejoint #mcdevs 2021-02-02 01:27:23 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-02 01:27:38 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-02 01:31:03 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-02-02 01:31:18 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-02 01:36:27 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-02 01:36:42 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-02 01:42:37 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-02 01:42:55 --> uis (~uis@95.165.156.213) a rejoint #mcdevs 2021-02-02 02:01:32 <-- uis (~uis@95.165.156.213) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-02 02:01:48 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-02 02:31:50 <-- jkrejcha (~jkrejcha@c-67-189-8-64.hsd1.wa.comcast.net) a quitté (Ping timeout: 264 seconds) 2021-02-02 02:33:41 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-02 02:33:55 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-02 02:41:29 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-02 02:41:44 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-02 02:47:04 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-02 02:51:18 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-02 03:05:07 <-- Akkarin (~Akkarin@hyperion.torchmind.com) a quitté (Ping timeout: 272 seconds) 2021-02-02 03:06:31 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-02 03:06:48 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-02 03:18:02 --> Akkarin (~Akkarin@hyperion.torchmind.com) a rejoint #mcdevs 2021-02-02 03:23:08 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-02 03:29:17 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-02 04:01:23 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-02 04:01:39 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-02 04:16:37 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-02 04:16:51 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-02 05:04:39 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-02 05:26:55 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-02 05:32:15 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-02 05:32:32 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-02 05:40:50 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-02 06:16:30 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-02 06:22:14 <-- clonejo_ (~clonejo@shakik3.shakik.de) a quitté (Remote host closed the connection) 2021-02-02 06:32:45 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-02 06:33:00 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-02 06:43:17 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-02 06:43:35 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-02 06:55:48 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-02 07:02:04 <-- Tides (~Tides@ool-45758743.dyn.optonline.net) a quitté (Quit: Leaving) 2021-02-02 07:12:35 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-02 07:21:20 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-02 08:11:11 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-02 08:13:42 stackotter thanks! haha, i see what you mean by messing up the packet ids lol 2021-02-02 08:14:06 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-02-02 08:22:12 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-02 08:25:25 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-02-02 08:30:07 --> Me4502 (~quassel@unaffiliated/me4502) a rejoint #mcdevs 2021-02-02 09:51:14 <-- Anna (anna@borealis.voxelstorm.com) a quitté (Ping timeout: 260 seconds) 2021-02-02 09:51:23 --> Anna (anna@borealis.voxelstorm.com) a rejoint #mcdevs 2021-02-02 11:02:22 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-02 11:05:47 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-02-02 11:07:52 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-02 11:10:47 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-02-02 11:57:40 --> paulzhng (4ff51ce6@p4ff51ce6.dip0.t-ipconnect.de) a rejoint #mcdevs 2021-02-02 12:01:52 paulzhng hey, does anybody for a chance know what packet needs to be sent on 1.8 (protocol version 47) in order for the client to fall properly, i.e. not 1 block / second? Seems like this issue only occurs to me on 1.8 but not higher. There's no exception for me in the logs so I suppose the packets itself aren't faulty (or are they?) 2021-02-02 12:03:31 <-- Me4502 (~quassel@unaffiliated/me4502) a quitté (Read error: Connection reset by peer) 2021-02-02 12:26:36 <-- paulzhng (4ff51ce6@p4ff51ce6.dip0.t-ipconnect.de) a quitté (Quit: Ping timeout (120 seconds)) 2021-02-02 12:33:38 --> paulzhng (4ff51ce6@p4ff51ce6.dip0.t-ipconnect.de) a rejoint #mcdevs 2021-02-02 12:49:16 <-- Andrio (~Andrio@questers-rest.andriocelos.net) a quitté (Remote host closed the connection) 2021-02-02 12:56:55 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-02 13:00:16 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-02-02 13:35:35 <-- paulzhng (4ff51ce6@p4ff51ce6.dip0.t-ipconnect.de) a quitté (Quit: Connection closed) 2021-02-02 14:44:11 --> jkrejcha (~jkrejcha@c-67-189-8-64.hsd1.wa.comcast.net) a rejoint #mcdevs 2021-02-02 15:03:08 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-02 15:06:21 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-02-02 16:13:40 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-02 16:16:57 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-02-02 16:19:11 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-02 16:28:03 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-02 16:29:31 <-- archer_321_ (~archer@ip-62-143-214-77.hsi01.unitymediagroup.de) a quitté (Quit: ZNC 1.8.2 - https://znc.in) 2021-02-02 16:32:52 --> archer_321 (~archer@ip-62-143-214-77.hsi01.unitymediagroup.de) a rejoint #mcdevs 2021-02-02 16:50:11 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-02 17:04:31 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-02 17:46:14 Not-77e "Microsoft Authentication Scheme" has been edited by Bixilon [-2] 2021-02-02 19:22:56 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-02 19:46:38 Not-77e "Microsoft Authentication Scheme" has been edited by Bixilon [+102] 2021-02-02 20:12:44 Not-77e "Microsoft Authentication Scheme" has been edited by Bixilon [+362] 2021-02-02 20:27:57 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-02 20:28:15 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-02 20:31:43 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-02-02 20:31:57 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-02 20:41:56 bixilon Small question: I implemented microsoft accounts in my client (https://gitlab.bixilon.de/bixilon/minosoft/) in branch development. Can somebody test if microsoft accounts are working? I would appreciate it 2021-02-02 20:47:20 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-02 20:47:39 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-03 01:05:34 --> Dykam (Dykam@dykam.nl) a rejoint #mcdevs 2021-02-03 01:11:13 <-- Dykam_ (Dykam@dykam.nl) a quitté (*.net *.split) 2021-02-03 04:04:05 <-- Proximyst (~Proximyst@baldr.proximyst.com) a quitté (Ping timeout: 240 seconds) 2021-02-03 04:16:25 --> Proximyst (~Proximyst@baldr.proximyst.com) a rejoint #mcdevs 2021-02-03 04:50:27 <-- bildramer (~bildramer@2a02:587:6233:bc00:9c32:6646:9dde:f493) a quitté (Ping timeout: 272 seconds) 2021-02-03 05:08:05 <-- mgrech (~mgrech@178-189-193-250.adsl.highway.telekom.at) a quitté (Ping timeout: 240 seconds) 2021-02-03 05:19:49 --> bildramer (~bildramer@2a02:587:6233:bc00:ac9b:cca1:4258:dfa9) a rejoint #mcdevs 2021-02-03 08:25:50 --> mgrech (~mgrech@178-189-193-250.adsl.highway.telekom.at) a rejoint #mcdevs 2021-02-03 09:27:20 <-- jkrejcha (~jkrejcha@c-67-189-8-64.hsd1.wa.comcast.net) a quitté (Ping timeout: 272 seconds) 2021-02-03 10:07:32 Not-77e "Map Format" has been edited by Kaleb Bruwer [+234] 2021-02-03 10:18:14 <-- deltab (~deltab@95.154.230.49) a quitté (Ping timeout: 265 seconds) 2021-02-03 10:28:28 --> deltab (~deltab@95.154.230.49) a rejoint #mcdevs 2021-02-03 15:53:46 --> liuliu (~liuliu@39.80.31.210) a rejoint #mcdevs 2021-02-03 15:55:56 <-- liuliu (~liuliu@39.80.31.210) a quitté (Remote host closed the connection) 2021-02-03 15:56:18 --> liuliu (~liuliu@39.80.31.210) a rejoint #mcdevs 2021-02-03 15:57:10 <-- liuliu (~liuliu@39.80.31.210) a quitté (Remote host closed the connection) 2021-02-03 19:06:05 <-- mgrech (~mgrech@178-189-193-250.adsl.highway.telekom.at) a quitté (Ping timeout: 240 seconds) 2021-02-03 19:10:02 Not-77e [McUpdates] Minecraft snapshot 21w05a has just been published to the launcher! 2021-02-03 19:10:16 Not-77e [McUpdates] Data generated by 21w05a: https://apimon.de/mcdata/21w05a/ 2021-02-03 19:10:24 Not-77e [minecraft-data] automatic-beyond-belief pushed 1 commit to master [+0/-0/±1] https://git.io/Jtuiq 2021-02-03 19:10:26 Not-77e [minecraft-data] automatic-beyond-belief 3b381b9 - Add 21w05a to common/protocolVersions.json 2021-02-03 19:15:17 Not-77e [Burger] New data now avaliable for 21w05a: 2021-02-03 19:15:18 Not-77e [Burger] Diff from 21w03a: https://pokechu22.github.io/Burger/diff_21w03a_21w05a.html (https://pokechu22.github.io/Burger/diff_21w03a_21w05a.json) 2021-02-03 19:15:20 Not-77e [Burger] Full data: https://pokechu22.github.io/Burger/21w05a.html (https://pokechu22.github.io/Burger/21w05a.json) 2021-02-03 19:23:22 Not-77e "Protocol version numbers" has been edited by Pokechu22 [+42] 2021-02-03 19:23:23 Not-77e "Pre-release protocol" has been edited by Pokechu22 [+2053] 2021-02-03 19:36:32 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-03 19:36:47 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-03 19:45:34 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-03 19:49:48 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-03 20:01:30 Not-77e "Pre-release protocol" has been edited by JochCool [+10] 2021-02-03 20:27:35 Not-77e "Pre-release protocol" has been edited by KennyTV [+59] 2021-02-03 20:34:05 StackDoubleFlow can the client not render chunks above y=256? 2021-02-03 20:34:18 StackDoubleFlow if I send chunk sections above that, it doesn't render 2021-02-03 20:38:10 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-03 20:38:27 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-03 20:43:49 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-03 20:44:04 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-03 21:09:48 <-- pokechu22 (~pokechu22@50.35.65.15) a quitté (Quit: Updating weechat...) 2021-02-03 21:12:37 --> pokechu22 (~pokechu22@50.35.65.15) a rejoint #mcdevs 2021-02-03 21:12:37 -- Mode #mcdevs [+v pokechu22] par ChanServ 2021-02-03 21:35:57 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-03 21:45:57 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-03 21:49:33 uis Above 16 2021-02-03 21:49:55 uis Chunk colomn contain 16 sections 2021-02-03 21:57:43 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-03 21:58:00 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-03 22:14:34 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-03 22:16:43 --> stackotter_ (~stackotte@27-33-54-105.tpgi.com.au) a rejoint #mcdevs 2021-02-03 22:17:43 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-03 22:18:36 <-- stackotter (~stackotte@192.183.220.203.dial.dynamic.acc01-kepl-wnb.comindico.com.au) a quitté (Ping timeout: 240 seconds) 2021-02-03 22:22:48 --> stackotter (~stackotte@125.254.1.185) a rejoint #mcdevs 2021-02-03 22:23:20 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-03 22:23:35 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-03 22:25:00 <-- stackotter_ (~stackotte@27-33-54-105.tpgi.com.au) a quitté (Ping timeout: 246 seconds) 2021-02-03 22:42:20 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-03 22:44:32 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-03 23:33:04 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-03 23:33:22 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 00:08:55 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 00:09:10 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 00:16:26 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 00:22:42 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 00:29:58 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 00:30:15 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 00:33:35 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-02-04 01:00:48 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 01:04:00 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-02-04 01:04:16 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 01:11:01 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 01:15:34 <-- switchy (~switchy@unaffiliated/switchy) a quitté #mcdevs ("WeeChat 3.0") 2021-02-04 01:21:45 <-- loser_ (~loser@176.88.95.179) a quitté (Ping timeout: 272 seconds) 2021-02-04 01:25:18 --> loser_ (~loser@176.88.91.235) a rejoint #mcdevs 2021-02-04 01:28:50 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 01:38:25 --> someone_stole_my (~mrkirby15@mrkirby153.com) a rejoint #mcdevs 2021-02-04 01:39:38 <-- mrkirby153 (~mrkirby15@mrkirby153.com) a quitté (Quit: ZNC - http://znc.in) 2021-02-04 02:02:15 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 02:02:33 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 02:05:38 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-02-04 02:05:55 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 02:09:06 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-02-04 02:09:25 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 02:20:21 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 02:20:37 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 02:34:36 <-- dan5 (~dan112@unaffiliated/dan112) a quitté (Ping timeout: 240 seconds) 2021-02-04 02:35:42 --> dan5 (~dan112@unaffiliated/dan112) a rejoint #mcdevs 2021-02-04 03:23:45 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 03:24:00 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 03:40:18 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 03:42:27 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 03:47:43 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 03:47:57 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 03:57:13 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 03:57:27 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 04:16:46 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 04:21:04 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 04:40:16 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 04:40:34 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 04:57:18 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 04:57:32 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 05:08:19 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 05:20:05 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 05:23:20 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-02-04 05:23:37 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 06:04:37 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2021-02-04 06:06:08 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 272 seconds) 2021-02-04 06:06:09 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2021-02-04 06:19:24 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 06:25:15 --> matthewprenger_ (~matthewpr@2605:a601:ac3b:300:fc58:b545:fe85:2865) a rejoint #mcdevs 2021-02-04 06:28:50 <-- matthewprenger (~matthewpr@2605:a601:ac3b:300:9044:c891:3a8e:f84e) a quitté (Ping timeout: 264 seconds) 2021-02-04 06:44:13 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 07:09:44 Not-77e "Protocol" has been edited by Ehh [+0] 2021-02-04 07:12:29 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 07:31:48 Not-77e "Protocol" has been edited by Pokechu22 [+0] 2021-02-04 07:32:45 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 08:01:32 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 08:27:18 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 08:41:39 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 08:41:58 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 08:45:08 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-02-04 08:49:44 <-- ry60003333 (~textual@2603-6010-3f06-a9d6-e1ed-3827-825f-4561.res6.spectrum.com) a quitté (Ping timeout: 240 seconds) 2021-02-04 08:51:21 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 08:54:15 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-02-04 08:58:22 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 09:05:39 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 09:07:56 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 09:12:22 <-- alexge50 (~alexge50@unaffiliated/alexge50) a quitté (Ping timeout: 260 seconds) 2021-02-04 09:13:43 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 09:13:58 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 09:13:59 --> alexge50 (~alexge50@unaffiliated/alexge50) a rejoint #mcdevs 2021-02-04 09:17:15 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-02-04 09:18:58 --> ry60003333 (~textual@2603-6010-3f06-a9d6-d1e7-c447-f7a1-3524.res6.spectrum.com) a rejoint #mcdevs 2021-02-04 09:19:23 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 09:26:42 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 09:26:59 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 09:30:09 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-02-04 09:30:27 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 09:33:40 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-02-04 09:37:57 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 09:47:39 <-- SpaceManiac (~SpaceMani@c-73-116-110-236.hsd1.ca.comcast.net) a quitté (Ping timeout: 268 seconds) 2021-02-04 09:48:44 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 09:49:25 --> SpaceManiac (~SpaceMani@c-73-116-110-236.hsd1.ca.comcast.net) a rejoint #mcdevs 2021-02-04 09:49:25 -- Mode #mcdevs [+v SpaceManiac] par ChanServ 2021-02-04 09:50:56 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 09:54:12 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-02-04 09:58:28 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 09:59:13 MiniDigger 21:49 Chunk colomn contain 16 sections <--- pre 1.17 :P 2021-02-04 10:16:43 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 10:18:58 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 10:24:47 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 10:25:02 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 10:31:44 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 10:32:00 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 10:38:50 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 10:47:20 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 10:56:46 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 10:59:00 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 11:08:18 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 11:14:32 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 11:17:51 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-02-04 11:22:03 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 11:27:19 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 11:31:38 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 11:38:55 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 11:41:08 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 12:10:54 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 12:18:13 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 12:21:08 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-02-04 12:21:23 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 12:30:34 --> bildramer1 (~bildramer@2a02:587:6233:bc00:ac9b:cca1:4258:dfa9) a rejoint #mcdevs 2021-02-04 12:34:15 <-- bildramer (~bildramer@2a02:587:6233:bc00:ac9b:cca1:4258:dfa9) a quitté (Ping timeout: 272 seconds) 2021-02-04 12:36:18 <-- SpaceManiac (~SpaceMani@c-73-116-110-236.hsd1.ca.comcast.net) a quitté (Ping timeout: 258 seconds) 2021-02-04 12:36:56 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 12:41:33 --> SpaceManiac (~SpaceMani@c-73-116-110-236.hsd1.ca.comcast.net) a rejoint #mcdevs 2021-02-04 12:41:33 -- Mode #mcdevs [+v SpaceManiac] par ChanServ 2021-02-04 12:53:16 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 12:58:32 --> mgrech (~mgrech@178-189-193-250.adsl.highway.telekom.at) a rejoint #mcdevs 2021-02-04 13:00:32 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 13:04:45 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 13:08:00 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-02-04 13:08:20 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 13:19:39 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 13:21:45 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 13:24:40 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-02-04 13:24:55 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 13:36:01 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 13:46:38 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 14:37:57 -- bildramer1 est maintenant connu sous le nom bildramer 2021-02-04 14:39:35 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 14:43:54 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 14:59:14 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 14:59:33 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 15:04:45 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 15:05:04 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 15:18:54 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 15:19:11 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 15:29:22 Not-77e "Java Edition Cheats" has been edited by IAJAlt [+402] 2021-02-04 15:38:39 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 16:03:55 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 16:26:19 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 16:26:37 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 16:45:44 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 16:46:01 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 16:56:15 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 17:00:30 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 17:05:17 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-02-04 17:05:35 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 17:18:01 bswartz I'm so pumped about >16 chunk sections 2021-02-04 17:18:45 bswartz Have they released a snapshot that does world generation above/below the ordinary 0-255 Y range? 2021-02-04 17:21:20 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 17:21:36 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 17:37:18 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 17:39:36 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 17:46:48 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 18:15:29 chibill Hm lol imagine a mod/server that makes the nether actually under the overworld xD, 2021-02-04 18:17:35 Sainan Just have to scale every block in the overworld by 8 2021-02-04 18:21:08 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 18:26:31 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 18:48:10 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 18:51:23 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-02-04 18:51:39 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 18:56:53 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 18:59:10 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 19:00:49 bswartz What about inability to place water in the nether, and the unusual light rules? 2021-02-04 19:01:35 bswartz Also unusual fire rules.... I think different dimensions will have to remain different because there are so many dimension-associated rules 2021-02-04 19:02:24 Sainan Well, all the logic could be split based on biome, since I think biomes are already split on height. 2021-02-04 19:03:48 bswartz That's true 2021-02-04 19:04:35 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 19:04:50 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 19:04:51 bswartz The main issue does become the portals and the distance compression 2021-02-04 19:09:56 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 19:10:02 Not-77e [McUpdates] Minecraft snapshot 21w05b has just been published to the launcher! 2021-02-04 19:10:13 Not-77e [McUpdates] Data generated by 21w05b: https://apimon.de/mcdata/21w05b/ 2021-02-04 19:10:15 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 19:10:19 Not-77e [minecraft-data] automatic-beyond-belief pushed 1 commit to master [+0/-0/±1] https://git.io/JtzMW 2021-02-04 19:10:20 Not-77e [minecraft-data] automatic-beyond-belief 5748198 - Add 21w05b to common/protocolVersions.json 2021-02-04 19:15:18 Not-77e [Burger] New data now avaliable for 21w05b: 2021-02-04 19:15:20 Not-77e [Burger] Diff from 21w05a: https://pokechu22.github.io/Burger/diff_21w05a_21w05b.html (https://pokechu22.github.io/Burger/diff_21w05a_21w05b.json) 2021-02-04 19:15:21 Not-77e [Burger] Full data: https://pokechu22.github.io/Burger/21w05b.html (https://pokechu22.github.io/Burger/21w05b.json) 2021-02-04 19:26:09 Not-77e "Protocol version numbers" has been edited by Pokechu22 [+42] 2021-02-04 19:28:10 Not-77e "Pre-release protocol" has been edited by Pokechu22 [+0] 2021-02-04 19:41:59 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 19:44:13 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 19:51:09 --> mgrech_ (~mgrech@178-189-193-250.adsl.highway.telekom.at) a rejoint #mcdevs 2021-02-04 19:52:58 <-- mgrech (~mgrech@178-189-193-250.adsl.highway.telekom.at) a quitté (Ping timeout: 276 seconds) 2021-02-04 19:54:05 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 19:54:22 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 20:03:31 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 20:03:47 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 21:12:03 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 21:12:19 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 21:15:14 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-02-04 21:15:25 bixilon Small question: Was just wondering about the sample code in Chunk Format. Fixed some errors and realized that some things changed in 1.16. How would I need to change the sample code to make that work? 2021-02-04 21:15:29 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 21:16:31 Not-77e "Chunk Format" has been edited by Bixilon [-7] 2021-02-04 21:18:38 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-02-04 21:52:23 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 22:03:08 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 22:03:23 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 22:18:41 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 22:18:55 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 22:31:43 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 22:32:01 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 22:35:17 <-- uis (~uis@uigors.tk) a quitté (Client Quit) 2021-02-04 22:35:35 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-04 22:44:32 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-04 22:44:48 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-05 00:55:54 <-- alexge50 (~alexge50@unaffiliated/alexge50) a quitté (Quit: ZNC 1.8.2 - https://znc.in) 2021-02-05 00:56:44 --> alexge50 (~alexge50@unaffiliated/alexge50) a rejoint #mcdevs 2021-02-05 01:23:55 <-- commandz (~commandz@199-15-107-199-15-107-244.cpe.sparklight.net) a quitté (Quit: Ping timeout (120 seconds)) 2021-02-05 01:24:08 --> commandz (~commandz@199-15-107-199-15-107-244.cpe.sparklight.net) a rejoint #mcdevs 2021-02-05 02:34:58 --> Andrio (Andrio@questers-rest.andriocelos.net) a rejoint #mcdevs 2021-02-05 03:34:05 <-- loser_ (~loser@176.88.91.235) a quitté (Ping timeout: 240 seconds) 2021-02-05 03:35:00 --> loser_ (~loser@176.88.91.235) a rejoint #mcdevs 2021-02-05 03:51:25 <-- loser_ (~loser@176.88.91.235) a quitté (Ping timeout: 240 seconds) 2021-02-05 03:52:10 --> loser_ (~loser@176.88.91.235) a rejoint #mcdevs 2021-02-05 04:26:16 <-- mgrech_ (~mgrech@178-189-193-250.adsl.highway.telekom.at) a quitté (Read error: Connection reset by peer) 2021-02-05 04:34:07 --> Me4502 (~quassel@unaffiliated/me4502) a rejoint #mcdevs 2021-02-05 04:49:41 --> mgrech (~mgrech@178-189-193-250.adsl.highway.telekom.at) a rejoint #mcdevs 2021-02-05 05:55:45 <-- dexter0 (~dexter0@c-73-222-1-210.hsd1.ca.comcast.net) a quitté (Quit: exit) 2021-02-05 05:56:09 --> dexter0 (~dexter0@c-73-222-1-210.hsd1.ca.comcast.net) a rejoint #mcdevs 2021-02-05 05:56:34 <-- SpaceManiac (~SpaceMani@c-73-116-110-236.hsd1.ca.comcast.net) a quitté (Remote host closed the connection) 2021-02-05 05:57:21 --> SpaceManiac (~SpaceMani@c-73-116-110-236.hsd1.ca.comcast.net) a rejoint #mcdevs 2021-02-05 05:57:21 -- Mode #mcdevs [+v SpaceManiac] par ChanServ 2021-02-05 06:02:28 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2021-02-05 06:06:33 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 264 seconds) 2021-02-05 06:06:33 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2021-02-05 07:00:03 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2021-02-05 07:03:46 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 276 seconds) 2021-02-05 07:03:46 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2021-02-05 08:43:50 <-- ry60003333 (~textual@2603-6010-3f06-a9d6-d1e7-c447-f7a1-3524.res6.spectrum.com) a quitté (Ping timeout: 264 seconds) 2021-02-05 08:58:06 --> niceplace (~nplace@titan.pathogen.is) a rejoint #mcdevs 2021-02-05 09:30:00 <-- niceplace (~nplace@titan.pathogen.is) a quitté (K-Lined) 2021-02-05 14:16:05 <-- Me4502 (~quassel@unaffiliated/me4502) a quitté (Read error: Connection reset by peer) 2021-02-05 14:53:47 <-- mgrech (~mgrech@178-189-193-250.adsl.highway.telekom.at) a quitté (Quit: mgrech) 2021-02-05 16:56:33 Not-77e "Mojang API" has been edited by Inventivetalent [-292] 2021-02-05 16:56:40 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-05 16:56:59 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-05 19:29:44 --> mgrech (~mgrech@178.113.105.191.wireless.dyn.drei.com) a rejoint #mcdevs 2021-02-05 20:01:25 <-- mgrech (~mgrech@178.113.105.191.wireless.dyn.drei.com) a quitté (Ping timeout: 240 seconds) 2021-02-05 23:34:19 --> saper (saper@wikipedia/saper) a rejoint #mcdevs 2021-02-06 03:11:36 --> LeoDog896 (~LeoDog896@2600:8805:200a:4500::f5d4) a rejoint #mcdevs 2021-02-06 03:12:10 LeoDog896 Ello! I've been looking into Player Position And Look (clientbound) (on wiki.vg) and noticed the teleport ID -- does that have to be specified? 2021-02-06 03:12:21 LeoDog896 (or more as is that actually important) 2021-02-06 03:13:31 Sainan It has to be sent, yes, but the value is irrelevant. The client will use it with teleport confirm, and you may ignore any movement until the teleport way confirmed. 2021-02-06 03:27:50 +pokechu22 It's generally just implemented as an incrementing counter, though you could just always set it to 0 too 2021-02-06 03:28:44 +pokechu22 The purpose is so that servers can ignore movement sent by players before they received (and confirmed) the Player Position and Look packet 2021-02-06 04:25:33 <-- LeoDog896 (~LeoDog896@2600:8805:200a:4500::f5d4) a quitté (Quit: Konversation terminated!) 2021-02-06 05:19:56 <-- sudden (~lax@unaffiliated/laxask) a quitté (Ping timeout: 240 seconds) 2021-02-06 05:20:52 --> sudden (~lax@unaffiliated/laxask) a rejoint #mcdevs 2021-02-06 06:12:49 --> Me4502 (~quassel@unaffiliated/me4502) a rejoint #mcdevs 2021-02-06 07:00:44 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2021-02-06 07:02:24 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 258 seconds) 2021-02-06 07:02:25 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2021-02-06 07:10:42 --> mgrech (~mgrech@178.113.105.191.wireless.dyn.drei.com) a rejoint #mcdevs 2021-02-06 07:11:22 <-- mgrech (~mgrech@178.113.105.191.wireless.dyn.drei.com) a quitté (Client Quit) 2021-02-06 09:32:45 --> niceplace (~nplace@titan.pathogen.is) a rejoint #mcdevs 2021-02-06 10:45:43 Not-77e [mineflayer] rom1504 pushed 1 commit to master [+1/-0/±0] https://git.io/Jt2SB 2021-02-06 10:45:45 Not-77e [mineflayer] u9g ccbefcb - example for bot with many accs from external file (#1624) One of the most common ways to hold minecraft accounts is in a "username:password" text file, which this example shows how to use 2021-02-06 10:51:42 <-- niceplace (~nplace@titan.pathogen.is) a quitté (K-Lined) 2021-02-06 10:55:35 Not-77e [mineflayer] rom1504 pushed 1 commit to master [+2/-6/±38] https://git.io/Jt2Sb 2021-02-06 10:55:37 Not-77e [mineflayer] Karang e9d991b - Simplify windows API and promisify tests (#1640) * Promisify tests * Simplify windows * Update windows api * Use custom prismarine-windows for tests * Fix linter * Avoid writing to chat when server is closing * Remove callbackChain * Attempt at fixing scoreboard * Disable failing part of scoreboard test * Add delay after setblock commands * Disable scoreboard test completely 2021-02-06 10:55:37 Not-77e * Add enchanting test * Improve inventory cleanup * Close the enchanting table when done * fix chest example * Fix trader example * Update api * Update p windowd 2021-02-06 11:01:28 Not-77e [mineflayer] rom1504 pushed 1 commit to master [+0/-0/±2] https://git.io/Jt29Y 2021-02-06 11:01:30 Not-77e [mineflayer] rom1504 3d0495b - Release 3.0.0 2021-02-06 11:01:58 Not-77e [mineflayer] github-actions[bot] tagged 3d0495b as 3.0.0 https://git.io/Jt29s 2021-02-06 11:40:08 Not-77e [mineflayer] rom1504 pushed 1 commit to master [+0/-0/±1] https://git.io/Jt2QU 2021-02-06 11:40:09 Not-77e [mineflayer] rom1504 b5a82cc - Add stage labels in contributing.md 2021-02-06 11:41:55 Not-77e [mineflayer] rom1504 pushed 1 commit to master [+0/-0/±1] https://git.io/Jt2Qt 2021-02-06 11:41:57 Not-77e [mineflayer] rom1504 a09d3b0 - add Stage1 to bug report template 2021-02-06 11:42:19 Not-77e [mineflayer] rom1504 pushed 1 commit to master [+0/-0/±1] https://git.io/Jt2Qm 2021-02-06 11:42:20 Not-77e [mineflayer] rom1504 73d3bf2 - add Stage1 to feature request template 2021-02-06 11:45:07 Not-77e [mineflayer] rom1504 pushed 1 commit to master [+0/-0/±1] https://git.io/Jt2Q3 2021-02-06 11:45:08 Not-77e [mineflayer] rom1504 507d6c6 - add link to contributing.md 2021-02-06 13:29:26 --> bildramer1 (~bildramer@2a02:587:6233:bc00:c878:dbd7:e649:fcf4) a rejoint #mcdevs 2021-02-06 13:31:29 <-- bildramer (~bildramer@2a02:587:6233:bc00:ac9b:cca1:4258:dfa9) a quitté (Ping timeout: 258 seconds) 2021-02-06 13:37:40 -- bildramer1 est maintenant connu sous le nom bildramer 2021-02-06 13:48:27 <-- Me4502 (~quassel@unaffiliated/me4502) a quitté (Quit: http://quassel-irc.org - Chat comfortably. Anywhere.) 2021-02-06 15:51:08 <-- bildramer (~bildramer@2a02:587:6233:bc00:c878:dbd7:e649:fcf4) a quitté (Ping timeout: 246 seconds) 2021-02-06 16:42:00 --> bildramer (~bildramer@2a02:587:6233:bc00:c878:dbd7:e649:fcf4) a rejoint #mcdevs 2021-02-06 20:23:54 <-- Fenhl (sid30770@gateway/web/irccloud.com/x-ahjcnrqzifpqtefh) a quitté (Quit: Connection closed for inactivity) 2021-02-06 21:32:22 <-- iczero (iczero@hellomouse/dev/iczero) a quitté (Quit: rip) 2021-02-06 21:42:05 --> skyrising (~skyrising@89.43.120.212) a rejoint #mcdevs 2021-02-06 21:51:05 --> iczero (iczero@hellomouse/dev/iczero) a rejoint #mcdevs 2021-02-06 22:05:01 --> mgrech (~mgrech@178.113.105.191.wireless.dyn.drei.com) a rejoint #mcdevs 2021-02-06 23:46:25 <-- mgrech (~mgrech@178.113.105.191.wireless.dyn.drei.com) a quitté (Ping timeout: 240 seconds) 2021-02-07 01:10:41 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.7.4 - https://znc.in) 2021-02-07 01:10:58 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2021-02-07 05:42:28 --> caelunshun (~caelum@75-169-33-212.slkc.qwest.net) a rejoint #mcdevs 2021-02-07 05:58:12 --> Me4502 (~quassel@unaffiliated/me4502) a rejoint #mcdevs 2021-02-07 06:02:30 caelunshun Anyone know why the client might lag excessively while my server is sending chunks? I'm getting stuttering even when rate limiting chunk packets to 20/second. 2021-02-07 06:05:26 --> mgrech (~mgrech@178.113.105.191.wireless.dyn.drei.com) a rejoint #mcdevs 2021-02-07 06:05:46 caelunshun Does the order of sent chunks matter? Right now I'm sorting by the distance to the player, but I'm not sure that's what the client expects. 2021-02-07 06:08:13 Sainan Any order should be fine, but e.g. it needs neighbouring chunks before it renders chunks, and a bit of an area around the player after joining. 2021-02-07 06:12:17 caelunshun Thanks, that makes sense. I'm still not sure what's causing the lag, then. 2021-02-07 07:07:23 +pokechu22 If you do shift+f3, it'll open a debug profiler pie chart which might help 2021-02-07 07:18:07 caelunshun Ah... looks like light updates are the main bottleneck according to the profiler. Maybe that means the client is getting incorrect light data, so it's recalculating? 2021-02-07 07:20:51 +pokechu22 Yeah, that seems plausible 2021-02-07 07:29:41 caelunshun All right, I've fixed it now... wasn't sending the y=-1 and y=16 chunks for lighting. Thanks for your help! 2021-02-07 08:33:09 --> barneygale (~barneygal@cpc93788-hari17-2-0-cust405.20-2.cable.virginm.net) a rejoint #mcdevs 2021-02-07 08:34:19 barneygale Morning folks, just noting I've published a Python/asyncio implementation of RakNet (or at least the bits mcpe uses) here: https://github.com/barneygale/asyncio-raknet 2021-02-07 08:45:02 <-- Me4502 (~quassel@unaffiliated/me4502) a quitté (Read error: Connection reset by peer) 2021-02-07 10:34:44 <-- caelunshun (~caelum@75-169-33-212.slkc.qwest.net) a quitté (Quit: WeeChat 1.9.1) 2021-02-07 11:08:42 --> Me4502 (~quassel@unaffiliated/me4502) a rejoint #mcdevs 2021-02-07 11:53:19 Not-77e "Chunk Format" has been edited by Alexykot [-57] 2021-02-07 12:44:06 <-- Me4502 (~quassel@unaffiliated/me4502) a quitté (Quit: http://quassel-irc.org - Chat comfortably. Anywhere.) 2021-02-07 13:03:38 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs