2020-03-26 06:19:34 x10A94 but there's no way to get this in survival, right? Because iirc both of them are limited 2020-03-26 06:20:16 +pokechu22 Looks like it was possible -- it's https://bugs.mojang.com/browse/MC-134716 (but you can't see it) 2020-03-26 06:20:30 x10A94 nice link 2020-03-26 06:21:03 +pokechu22 I've got the power to see private tickets :D 2020-03-26 06:21:09 timmyRS I assume it's private because it had some crash potential to crash clients or even the server? 2020-03-26 06:21:10 x10A94 I guess if it's an exploit then yeah it should prolly stay private, but it would have been a great speedrun category 2020-03-26 06:21:45 +pokechu22 https://www.minecraft.net/en-us/article/minecraft-snapshot-18w31a gives it the name "Minecraft Multiplayer – Player kick exploit" 2020-03-26 06:22:16 x10A94 looks like it would just give you the power to kick all other players 2020-03-26 06:23:30 timmyRS Maybe when everyone is using 1.16 or higher, aka. coronavirus succeeds in wiping out everyone, because we are all terrible sinners for still using and supporting 5-year-old 1.8, we will be able to read those secret issues. 2020-03-26 06:24:07 x10A94 lmao I'm not 2020-03-26 06:24:26 x10A94 I technically can, but that's quite a lot of work 2020-03-26 06:24:52 x10A94 1.12 is the only old version that I can still see myself supporting because 1.13 killed performance 2020-03-26 06:46:56 <-- mgrech (~mgrech@194-166-99-28.adsl.highway.telekom.at) a quitté (Ping timeout: 256 seconds) 2020-03-26 07:00:28 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2020-03-26 07:02:52 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 256 seconds) 2020-03-26 07:02:52 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2020-03-26 07:18:05 timmyRS Funnily enough, F3+N also respects the player list item value, so in this no-clip creative mode, F3+N will just issue "/gamemode creative" over and over again. 2020-03-26 07:27:48 <-- dexter0 (~dexter0@c-73-222-1-210.hsd1.ca.comcast.net) a quitté (Ping timeout: 256 seconds) 2020-03-26 07:29:20 --> dexter0 (~dexter0@c-73-222-1-210.hsd1.ca.comcast.net) a rejoint #mcdevs 2020-03-26 07:48:30 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-03-26 07:57:44 --> kev009 (~kev009@ip72-222-200-117.ph.ph.cox.net) a rejoint #mcdevs 2020-03-26 07:57:44 -- Mode #mcdevs [+v kev009] par ChanServ 2020-03-26 08:57:07 <-- kev009 (~kev009@ip72-222-200-117.ph.ph.cox.net) a quitté (Ping timeout: 250 seconds) 2020-03-26 09:06:26 <-- Pyker (~pyker@hexagon.pyker.net) a quitté (*.net *.split) 2020-03-26 09:06:26 <-- kashike (kashike@unaffiliated/kashike) a quitté (*.net *.split) 2020-03-26 09:06:26 <-- sudden (~lax@unaffiliated/laxask) a quitté (*.net *.split) 2020-03-26 09:06:58 --> sudden (~lax@unaffiliated/laxask) a rejoint #mcdevs 2020-03-26 09:07:04 --> Pyker (~pyker@hexagon.pyker.net) a rejoint #mcdevs 2020-03-26 09:07:35 --> kashike (kashike@unaffiliated/kashike) a rejoint #mcdevs 2020-03-26 09:08:01 -- Pyker est maintenant connu sous le nom Guest22140 2020-03-26 12:15:15 <-- christolis (~Thunderbi@adsl-115.176.58.128.tellas.gr) a quitté (Quit: christolis) 2020-03-26 12:43:09 <-- Guest22140 (~pyker@hexagon.pyker.net) a quitté (Quit: Leaving) 2020-03-26 12:43:23 --> Pyker (~pyker@hexagon.pyker.net) a rejoint #mcdevs 2020-03-26 14:29:35 --> scatterp (3eb670de@62.182.112.222) a rejoint #mcdevs 2020-03-26 14:30:36 scatterp any one here familiar with minecraft protocol 340 (1.12.2) chunk structure specifically palate stuff ? 2020-03-26 14:31:18 timmyRS Yes 2020-03-26 14:31:41 scatterp timmyRS so i am working with a guy right now on discord were trying to make sense of whats happening 2020-03-26 14:32:02 scatterp were working on a issue with craft assist let me link to that one moment 2020-03-26 14:32:27 scatterp https://github.com/facebookresearch/craftassist/issues/21 2020-03-26 14:32:47 scatterp were trying to work out what exactly happened and how to resolve it 2020-03-26 14:33:10 scatterp because the client in this case seems to expect 13 bits but use protocol 1.12.2 or some hybrid of that and 1.9 2020-03-26 14:33:23 scatterp we tried to follow the wiki but its confusing 2020-03-26 14:35:27 timmyRS It became 14 bits at some point (maybe 1.13), but in general the bits are sent kind of weirdly, in that they are reversed. Have a look at the example: https://wiki.vg/Chunk_Format#Example 2020-03-26 14:35:48 scatterp yes been on that page also every historical revision 2020-03-26 14:36:12 scatterp 14 bits was i think 1.14 2020-03-26 14:36:31 scatterp and we noted also the reversal of the bits 2020-03-26 14:36:45 scatterp but when connecting to spigot we recieve 4 bits 2020-03-26 14:36:48 scatterp not 13 2020-03-26 14:37:52 timmyRS Then the indirect palette is being used, so the indexes point not to the global palette, but the palette given before. It's just a VarInt-length-prefixed list of VarInts pointing to the global palette index. 2020-03-26 14:38:24 scatterp so we need to kinda decode what spigot sends and re-encode that to 13bits what our bot expects 2020-03-26 14:38:49 scatterp is there some lib that could make it easy to decode / convert that 2020-03-26 14:38:56 --> mgrech (~mgrech@194-166-99-28.adsl.highway.telekom.at) a rejoint #mcdevs 2020-03-26 14:39:10 scatterp its odd because the bot connects to cubrite with out a problem 2020-03-26 14:39:11 timmyRS Why can't the bot just also handle indirect palette? I think that's been in the game since 1.9 2020-03-26 14:39:33 timmyRS I guess cubrite only ever uses the direct palette? 2020-03-26 14:39:48 scatterp well we could add the code to do that theoretically how ever were in a total state of confusion 2020-03-26 14:40:00 scatterp i mean we need a clear understanding of whats going on to do so 2020-03-26 14:40:51 scatterp the bot does not really need to see colors either but i think the bit size defines the format or something 2020-03-26 14:41:37 timmyRS It does. You did read the Chunk format article, right? 2020-03-26 14:41:53 timmyRS Specifically: https://wiki.vg/Chunk_Format#Palettes 2020-03-26 14:42:03 scatterp yes 2020-03-26 14:42:16 scatterp almost have it commited to memory lol 2020-03-26 14:42:28 timmyRS The palette section applies for 1.9 to current, and I think if you just read it, your confusion might be cleared? 2020-03-26 14:44:42 timmyRS Or is there anything else you don't understand? It seems to me your implemention is just missing the indirect palette. 2020-03-26 14:45:51 scatterp coupled with what you said its making more sense one moment thinking 2020-03-26 14:47:59 --> Tigee (aefa1003@3.sub-174-250-16.myvzw.com) a rejoint #mcdevs 2020-03-26 14:48:05 scatterp so instead of the current if bits !=13 crash 2020-03-26 14:48:23 scatterp we should have a else which goes to process indirect palate 2020-03-26 14:48:52 timmyRS Certainly, bits can be 4 to 14 (16 with mods), and 4 to 8 is a slightly different handling. 2020-03-26 14:49:22 scatterp yeah so there we go on to define cases 2020-03-26 14:49:29 scatterp such as forge etc 2020-03-26 14:51:37 timmyRS What do you mean? 2020-03-26 14:52:11 scatterp well for example a case for <= 4 2020-03-26 14:52:35 scatterp between 5 and 8 2020-03-26 14:53:51 scatterp if each amount of bits is a different format then what i am kind of missing is concrete examples of each format with the actual binary/hex like the examples below 2020-03-26 14:53:51 timmyRS Yeah, but why would forge be a case? 2020-03-26 14:54:06 scatterp forge as i understand it can have a lot more bits 2020-03-26 14:54:36 timmyRS Well, they're the same format, the amount of bits per block is just different, and for <= 8 bits per block, it points to a different palette. 2020-03-26 14:55:17 Not-8b5f [minecraft-data] automatic-beyond-belief pushed 1 commit to master [+0/-0/±1] https://git.io/Jv9RB 2020-03-26 14:55:18 Not-8b5f [minecraft-data] automatic-beyond-belief 3036553 - Add 20w13b to common/protocolVersions.json 2020-03-26 14:55:39 scatterp also confusing is the colors in the example i dunno if thats just a visual aid to see the data is reversed because red grass makes no sense how ever theres no explanation of how any of this relates to color for example 2020-03-26 14:56:08 timmyRS If you were to scroll a bit down, it shows what everything means using the same colors. 2020-03-26 14:56:30 scatterp yes thats exactly the section i am talking about 2020-03-26 14:56:55 scatterp but where is the actual bits of data to define what the color is ? 2020-03-26 14:57:10 scatterp like a red shulker for example 2020-03-26 14:57:35 timmyRS You're reading too much between the lines 2020-03-26 14:57:43 scatterp yeah perhaps :/ 2020-03-26 14:57:45 timmyRS The boxes are just boxes and the colors are unique 2020-03-26 14:58:13 scatterp ok yeah so where are the actual colors i mean were talking about palettes right? 2020-03-26 14:58:30 timmyRS It's not an actual palette.. it's a palette of blockstates. 2020-03-26 14:58:37 scatterp oh god!! 2020-03-26 14:58:40 scatterp fuck 2020-03-26 14:58:57 scatterp ok that just lowered my confusion a lot 2020-03-26 14:59:05 timmyRS Minecraft is not paint: multiplayer edition :) 2020-03-26 14:59:16 <-- Tigee (aefa1003@3.sub-174-250-16.myvzw.com) a quitté (Ping timeout: 240 seconds) 2020-03-26 14:59:18 scatterp but in 1.9 they made the world of COLOR update 2020-03-26 14:59:28 scatterp and 1.9 was also the last time with 13 bits 2020-03-26 14:59:31 timmyRS I think that's to do with new coloured blocks? 2020-03-26 14:59:37 scatterp yeah 2020-03-26 14:59:56 scatterp so when i see palette i presume were talking about color 2020-03-26 15:00:10 scatterp im gonna reread everything factoring in that new info one sec 2020-03-26 15:01:12 timmyRS The Chunk Format article does also state "Minecraft also uses palettes. A palette maps numeric IDs to block states. The concept is more commonly used with colors in an image; Wikipedia's articles on color look-up tables, indexed colors, and palettes in general may be helpful for fully grokking it." in the preamble / "Concepts" section 2020-03-26 15:02:22 --> Tigee (aefa1003@3.sub-174-250-16.myvzw.com) a rejoint #mcdevs 2020-03-26 15:02:34 timmyRS Don't worry, I also didn't fully read the article and then was confused why I didn't understand Chunks (: 2020-03-26 15:05:51 scatterp no i read it about 20 - 30 times but this pallette stuff created confusion 2020-03-26 15:06:10 scatterp right now a lot is clicking in to place i will write my understanding in a sec to be sure but almost got i t 2020-03-26 15:08:55 <-- Tigee (aefa1003@3.sub-174-250-16.myvzw.com) a quitté (Remote host closed the connection) 2020-03-26 15:09:43 scatterp so if my understanding is right the bits per block =x we go look at the data array divide it in to longs and then in reverse order cut it in to blocks of bitsperblock size this gives us a bunch of binary numbers we convert that in to decimal look it up on the mc block id list and we then have the full list of blocks in the chunk in reverse order of 2020-03-26 15:09:43 scatterp appearance 2020-03-26 15:10:48 scatterp so simply padding the 4bit data in 4 bit blocks to 13 bit blocks would produce 13 bit valid data ? 2020-03-26 15:11:00 timmyRS No 2020-03-26 15:11:15 scatterp for both statments? 2020-03-26 15:11:25 timmyRS 4 bits is indirect palette, 13 bits is direct palette. 2020-03-26 15:11:56 Not-8b5f [Burger] New data now avaliable for 20w13b: 2020-03-26 15:11:57 timmyRS And the 4096 blocks are per section, the bitmask before tells you which of the 16 chunk sections are set, the rest are assumed to be air. 2020-03-26 15:11:57 Not-8b5f [Burger] Diff from 20w13a: https://pokechu22.github.io/Burger/diff_20w13a_20w13b.html (https://pokechu22.github.io/Burger/diff_20w13a_20w13b.json) 2020-03-26 15:11:59 Not-8b5f [Burger] Full data: https://pokechu22.github.io/Burger/20w13b.html (https://pokechu22.github.io/Burger/20w13b.json) 2020-03-26 15:12:46 scatterp so what i said applies only to direct situations ? 2020-03-26 15:13:50 timmyRS Well the only difference with the indirect palette is that the indexes point to a different palette with the indexes to the mc palette 2020-03-26 15:17:11 scatterp so the palette is the block ids and the data array contains pointers to the palette ? 2020-03-26 15:18:00 scatterp that implys that the data in the palette is not ordered and the data array contains the ordering data 2020-03-26 15:18:30 timmyRS The palette is block states, the indirect palette is points to the direct palette. The data contains pointers to either the indirect or direct palette depending on bits per block. 2020-03-26 15:18:55 timmyRS The data array is ordered, the palette is a palette. 2020-03-26 15:19:28 timmyRS "Data Array is given for each block with increasing x coordinates, within rows of increasing z coordinates, within layers of increasing y coordinates." 2020-03-26 15:20:21 scatterp when you say block state do you mean grass or cobble or are we talking about damage levels colors etc ? 2020-03-26 15:21:55 timmyRS A block of grass, has metadata: snowy, which can be true or false. Both of these variations are a block state. 2020-03-26 15:24:37 --> Tiger (aefa1003@3.sub-174-250-16.myvzw.com) a rejoint #mcdevs 2020-03-26 15:25:00 -- Tiger est maintenant connu sous le nom Guest61163 2020-03-26 15:25:53 scatterp ok so if the data array contains pointers and the palette contains states such as snowy where are we storing in the indirect case the actual block i.e grass 2020-03-26 15:26:29 scatterp or is the data array formatted block id , pointer 2020-03-26 15:26:32 Guest61163 the palette stores the block states of the blocks in the chunks right? 2020-03-26 15:26:43 timmyRS Here's a very big JSON file for your consideration: https://apimon.de/mcdata/1.13/blocks.jso 2020-03-26 15:26:52 timmyRS Whoops, here's the correct link: https://apimon.de/mcdata/1.13/blocks.json 2020-03-26 15:27:34 <-- Guest61163 (aefa1003@3.sub-174-250-16.myvzw.com) a quitté (Remote host closed the connection) 2020-03-26 15:27:44 timmyRS Again, grass_block has 2 states: [snowy=true] and [snowy=false], with with ID 8 and 9, respectively. 2020-03-26 15:28:04 timmyRS This is considered the ID in the "global palette" 2020-03-26 15:28:32 timmyRS So, say with 13 bits per block, we'd write 0000000001000 2020-03-26 15:28:54 timmyRS (or maybe it would be the other way around?) 2020-03-26 15:29:05 scatterp guest61163 is the guy im wokring with but his got some connection issues i am relaying the chat to him and were discussing 2020-03-26 15:29:40 timmyRS Anyway, with the indirect palette, we'd just write, e.g. 01 08 to indicate 1 item in the palette, that item being global palette ID 8 2020-03-26 15:30:12 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2020-03-26 15:30:13 timmyRS and then in the data we'd write 0000 to indicate the item that is at index 0 in our indirect palette, so ID 8 in the global palette, so grass_block[snowy=true] 2020-03-26 15:30:13 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 264 seconds) 2020-03-26 15:30:14 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2020-03-26 15:30:49 scatterp the 1 item part lost me only 2020-03-26 15:31:00 scatterp so if its 8 items that means a line of 8 of them ? 2020-03-26 15:31:18 timmyRS ? 2020-03-26 15:32:25 scatterp Anyway, with the indirect palette, we'd just write, e.g. 01 08 to indicate 1 item in the palette, that item being global palette ID 8 2020-03-26 15:32:33 scatterp ^ i dont get the 1 part 2020-03-26 15:33:01 timmyRS Well, that's the palette data, before the Data Array 2020-03-26 15:33:10 timmyRS 01 is the VarInt length prefix 2020-03-26 15:33:19 timmyRS 08 is a VarInt entry in the palette 2020-03-26 15:41:37 scatterp can the varint length prefix be greater than 1 ? 2020-03-26 15:42:10 timmyRS Yes, it can be 1 to 2^31, it's to indicate the length of the indirect palette. 2020-03-26 15:42:55 timmyRS Actually, I don't think VarInts can bctually be that long, but you get the gist. 2020-03-26 15:43:01 scatterp total length of the indirect palette or the length of data relevant to the specific block 2020-03-26 15:45:11 timmyRS Realistically, the indirect palette can't be longer than 255, as encoding those indexes would require more than 8 bits. 2020-03-26 15:45:22 scatterp ah ok 2020-03-26 15:45:37 scatterp i think i get everything now 2020-03-26 15:45:52 scatterp at least i got over 50% and the guy i am on the phone with thinks he gets it too now 2020-03-26 15:46:07 scatterp so were going to try to continue with some code see if we can make it work 2020-03-26 16:05:42 <-- KennyTV (~KennyTV@static.162.124.47.78.clients.your-server.de) a quitté (Quit: o>) 2020-03-26 16:06:22 --> KennyTV (~KennyTV@static.162.124.47.78.clients.your-server.de) a rejoint #mcdevs 2020-03-26 16:07:12 <-- KennyTV (~KennyTV@static.162.124.47.78.clients.your-server.de) a quitté (Client Quit) 2020-03-26 16:08:29 --> KennyTV (~KennyTV@static.162.124.47.78.clients.your-server.de) a rejoint #mcdevs 2020-03-26 16:53:26 <-- caelunsh1 (~caelum@75-169-54-15.slkc.qwest.net) a quitté (Ping timeout: 240 seconds) 2020-03-26 16:55:45 --> caelunsh1 (~caelum@75-169-54-15.slkc.qwest.net) a rejoint #mcdevs 2020-03-26 17:49:34 <-- caelunsh1 (~caelum@75-169-54-15.slkc.qwest.net) a quitté (Ping timeout: 240 seconds) 2020-03-26 17:51:22 <-- scatterp (3eb670de@62.182.112.222) a quitté (Remote host closed the connection) 2020-03-26 19:20:25 <-- KennyTV (~KennyTV@static.162.124.47.78.clients.your-server.de) a quitté (Quit: o>) 2020-03-26 19:20:56 --> KennyTV (~KennyTV@static.162.124.47.78.clients.your-server.de) a rejoint #mcdevs 2020-03-26 22:09:41 --> Kodoque (~Kodoque@2a01cb000f0e5700855386681f12ea54.ipv6.abo.wanadoo.fr) a rejoint #mcdevs 2020-03-26 22:22:23 <-- Kodoque (~Kodoque@2a01cb000f0e5700855386681f12ea54.ipv6.abo.wanadoo.fr) a quitté (Quit: Leaving) 2020-03-26 22:22:40 --> Kodoque (~Kodoque@2a01cb000f0e5700855386681f12ea54.ipv6.abo.wanadoo.fr) a rejoint #mcdevs 2020-03-26 22:23:41 <-- Kodoque (~Kodoque@2a01cb000f0e5700855386681f12ea54.ipv6.abo.wanadoo.fr) a quitté (Client Quit) 2020-03-26 22:23:58 --> Kodoque (~makkron@2a01cb000f0e5700855386681f12ea54.ipv6.abo.wanadoo.fr) a rejoint #mcdevs 2020-03-26 22:24:15 <-- Kodoque (~makkron@2a01cb000f0e5700855386681f12ea54.ipv6.abo.wanadoo.fr) a quitté (Remote host closed the connection) 2020-03-26 22:24:38 --> makkron (~makkron@2a01cb000f0e5700855386681f12ea54.ipv6.abo.wanadoo.fr) a rejoint #mcdevs 2020-03-26 23:37:28 <-- makkron (~makkron@2a01cb000f0e5700855386681f12ea54.ipv6.abo.wanadoo.fr) a quitté (Quit: Leaving) 2020-03-27 00:02:26 --> kev009 (~kev009@ip72-222-200-117.ph.ph.cox.net) a rejoint #mcdevs 2020-03-27 00:02:26 -- Mode #mcdevs [+v kev009] par ChanServ 2020-03-27 00:05:34 <-- matthewprenger (~matthewpr@136.33.220.153) a quitté (Ping timeout: 240 seconds) 2020-03-27 00:06:18 --> matthewprenger (~matthewpr@136.33.220.153) a rejoint #mcdevs 2020-03-27 00:11:52 <-- kev009 (~kev009@ip72-222-200-117.ph.ph.cox.net) a quitté (Ping timeout: 256 seconds) 2020-03-27 00:16:37 --> kev009 (~kev009@ip72-222-200-117.ph.ph.cox.net) a rejoint #mcdevs 2020-03-27 00:16:37 -- Mode #mcdevs [+v kev009] par ChanServ 2020-03-27 01:50:15 <-- dexter0 (~dexter0@c-73-222-1-210.hsd1.ca.comcast.net) a quitté (Ping timeout: 250 seconds) 2020-03-27 01:54:24 --> dexter0 (~dexter0@2601:647:4580:c700:7c:10ff:fe00:b0b) a rejoint #mcdevs 2020-03-27 02:03:00 <-- gabizou (~gabizou@69.147.207.130) a quitté (Ping timeout: 256 seconds) 2020-03-27 02:13:38 --> gabizou (~gabizou@69.147.207.130) a rejoint #mcdevs 2020-03-27 03:04:47 --> Dadido3 (~quassel@p5b2cb35a.dip0.t-ipconnect.de) a rejoint #mcdevs 2020-03-27 03:05:07 <-- Dadido3_ (~quassel@p54826FC2.dip0.t-ipconnect.de) a quitté (Ping timeout: 260 seconds) 2020-03-27 03:17:43 <-- deltab (~deltab@95.154.230.49) a quitté (Ping timeout: 260 seconds) 2020-03-27 03:22:12 --> levifig (~levi@205.186.144.152) a rejoint #mcdevs 2020-03-27 03:24:37 --> deltab (~deltab@95.154.230.49) a rejoint #mcdevs 2020-03-27 04:13:39 <-- wvffle (~wvffle@host-46-175-47-49.wtvk.pl) a quitté (Read error: Connection reset by peer) 2020-03-27 04:17:04 --> wvffle (~wvffle@host-46-175-47-49.wtvk.pl) a rejoint #mcdevs 2020-03-27 05:44:43 <-- Krenair (~alex@wikimedia/Krenair) a quitté (Ping timeout: 260 seconds) 2020-03-27 05:46:38 --> Krenair (~alex@wikimedia/Krenair) a rejoint #mcdevs 2020-03-27 06:29:22 <-- Dadido3 (~quassel@p5b2cb35a.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2020-03-27 06:30:35 --> Dadido3 (~quassel@p5B2CB35A.dip0.t-ipconnect.de) a rejoint #mcdevs 2020-03-27 06:54:04 --> mgrech_ (~mgrech@194-166-99-28.adsl.highway.telekom.at) a rejoint #mcdevs 2020-03-27 06:57:13 <-- mgrech (~mgrech@194-166-99-28.adsl.highway.telekom.at) a quitté (Ping timeout: 264 seconds) 2020-03-27 07:46:03 <-- mgrech_ (~mgrech@194-166-99-28.adsl.highway.telekom.at) a quitté (Ping timeout: 265 seconds) 2020-03-27 11:16:36 <-- killme (~killmePI@185.9.253.124) a quitté (Ping timeout: 258 seconds) 2020-03-27 11:16:54 --> killme (~killmePI@185.9.253.124) a rejoint #mcdevs 2020-03-27 11:18:25 x10A94 Is there a sample Tags packet anywhere? 2020-03-27 11:24:28 x10A94 nvm got it 2020-03-27 11:58:30 <-- Yamakaja (~yamakaja@vps.pub.yamakaja.me) a quitté (Quit: Bye) 2020-03-27 12:00:51 --> Yamakaja (~yamakaja@vps.pub.yamakaja.me) a rejoint #mcdevs 2020-03-27 12:59:59 --> Jw2476 (2ed0b339@57.179.208.46.dyn.plus.net) a rejoint #mcdevs 2020-03-27 13:00:43 Jw2476 Hey, I'm trying to make a very minimal server as a test, is it possible to send no recipies in the Declare Recipies in the Client login sequence for now 2020-03-27 13:01:33 timmyRS You could also just not send Declare Recipies 2020-03-27 13:01:46 Jw2476 that works? 2020-03-27 13:02:24 timmyRS Yes, the sequence is just what vanilla does, and only a few packets are actually required for the client to "join." 2020-03-27 13:02:41 Jw2476 Could you list them for me please? 2020-03-27 13:04:19 timmyRS Clientbound Position and Look aka. Teleport, and that's it, they're now in void. Chunk data if that's not your taste. 2020-03-27 13:04:50 Jw2476 Huh, that's what I thought I was sending 2020-03-27 13:09:22 Jw2476 I've just sent it and it's not spawning 2020-03-27 13:11:04 timmyRS I guess you'll also need the "Join Game" packet, although I think that's self-explanatory 2020-03-27 13:11:59 timmyRS If that's not it, maybe you need spawn position as well? 2020-03-27 13:13:08 Jw2476 trying now 2020-03-27 13:13:28 Jw2476 I think I deleted sending the Join Game packet by accident 2020-03-27 13:16:44 Jw2476 I'm now getting some super weird errors from the MC Decoder 2020-03-27 13:16:53 Jw2476 Packets too long, too short 2020-03-27 13:17:06 Jw2476 but not which packets and where 2020-03-27 13:17:21 timmyRS It does tell you the packet ID in the error message tho 2020-03-27 13:17:51 Jw2476 Ah yes it does 2020-03-27 13:18:10 Jw2476 its trying to read packet 11, wtf? 2020-03-27 13:18:11 timmyRS That's decimal tho, just so you're not confused 2020-03-27 13:19:01 Jw2476 Block Entity Data 2020-03-27 13:19:11 Jw2476 I never send that 2020-03-27 13:19:16 timmyRS If Minecraft says 11, it means 0xB 2020-03-27 13:20:52 Jw2476 I've been basing the opcodes off wiki.vg's indexing without subtracting one so all my packets are 1 out on the opcode 2020-03-27 13:23:23 Jw2476 and havent been writing opcodes and VarInt 2020-03-27 13:23:29 Jw2476 *as VarInt 2020-03-27 13:23:38 timmyRS If you're looking for more parsable data, have a look at the minecraft-data project: https://github.com/PrismarineJS/minecraft-data 2020-03-27 13:24:10 timmyRS Should be fine as long as your varints are 0 to 127 2020-03-27 13:27:19 Jw2476 Ok I'm no longer getting errors, but I'm stuck on Joining World... 2020-03-27 13:27:37 timmyRS The teleport packet should make that go away 2020-03-27 13:28:05 Jw2476 So I need to send Player Look and Position and Teleport 2020-03-27 13:28:40 timmyRS Just 0x36 2020-03-27 13:29:19 Jw2476 That's what I'm sending 2020-03-27 13:29:36 Jw2476 Shall I implement Teleport Confirm just to check 2020-03-27 13:30:02 timmyRS Sure 2020-03-27 13:34:29 Jw2476 I'm not getting it 2020-03-27 13:34:53 timmyRS You're sending this after join game, right? 2020-03-27 13:35:45 Jw2476 I go Handshake, Login Start -> Encryption Request -> Encryption Response -> Join Game, Player Position and Look and get nothing back 2020-03-27 13:36:24 timmyRS Maybe try putting Spawn Position between Join Game and Teleport 2020-03-27 13:36:33 Jw2476 Sorry forgot to put Login Success in there but thats there too 2020-03-27 13:36:35 Jw2476 k 2020-03-27 13:54:40 Jw2476 Still no luck 2020-03-27 13:55:04 Jw2476 Any ideas 2020-03-27 13:59:51 timmyRS 1.15.2 can join without chunk data, although I'm sending a couple more packets, I do think just join game + teleport is enough. 2020-03-27 14:00:59 Jw2476 I'm not getting TeleportConfirm 2020-03-27 14:02:17 Jw2476 timmyRS could u pls list the packets ur sending 2020-03-27 14:07:55 timmyRS join game, abilities, spawn position, teleport, entity status (since very recently), and that's about all I could trace in the join function of the integrated server. 2020-03-27 14:08:46 Jw2476 I'm gonna go have some lunch and have a think 2020-03-27 14:09:11 Jw2476 Also do you know of a mc client that logs packets that are sent to it in a readable way 2020-03-27 14:10:29 timmyRS I think there are some proxy projects 2020-03-27 14:44:22 <-- Jw2476 (2ed0b339@57.179.208.46.dyn.plus.net) a quitté (Remote host closed the connection) 2020-03-27 15:04:07 --> mgrech_ (~mgrech@194-166-99-28.adsl.highway.telekom.at) a rejoint #mcdevs 2020-03-27 16:53:43 <-- levifig (~levi@205.186.144.152) a quitté (Remote host closed the connection) 2020-03-27 18:23:37 --> millerti (~millerti@cpe-66-24-91-119.stny.res.rr.com) a rejoint #mcdevs 2020-03-27 19:43:09 <-- Thinkofname (~Think@163.172.95.9) a quitté (Quit: Leaving) 2020-03-27 19:47:55 --> Thinkofname (~Think@163.172.95.9) a rejoint #mcdevs 2020-03-27 19:47:55 -- Mode #mcdevs [+v Thinkofname] par ChanServ 2020-03-27 19:55:42 <-- Thinkofname (~Think@163.172.95.9) a quitté (Quit: Leaving) 2020-03-27 21:15:02 <-- mgrech_ (~mgrech@194-166-99-28.adsl.highway.telekom.at) a quitté (Ping timeout: 256 seconds) 2020-03-27 21:15:25 --> mgrech (~mgrech@194-166-99-28.adsl.highway.telekom.at) a rejoint #mcdevs 2020-03-27 22:16:20 --> Tux_ (~tux@107.161.31.111) a rejoint #mcdevs 2020-03-27 22:19:22 <-- Tux_ (~tux@107.161.31.111) a quitté (Changing host) 2020-03-27 22:19:22 --> Tux_ (~tux@unaffiliated/tux) a rejoint #mcdevs 2020-03-27 22:24:35 -- Tux_ est maintenant connu sous le nom school 2020-03-27 23:07:25 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 264 seconds) 2020-03-27 23:17:20 -- school est maintenant connu sous le nom Tux 2020-03-27 23:27:26 --> Thinkofname (~Think@167.172.50.173) a rejoint #mcdevs 2020-03-27 23:27:26 -- Mode #mcdevs [+v Thinkofname] par ChanServ 2020-03-28 00:23:17 <-- wvffle1 (wvfflematr@gateway/shell/matrix.org/x-spqmwptnbddtsfio) a quitté #mcdevs ("User left") 2020-03-28 00:59:44 --> wvffle1 (wvfflematr@gateway/shell/matrix.org/x-spqmwptnbddtsfio) a rejoint #mcdevs 2020-03-28 01:44:21 <-- millerti (~millerti@cpe-66-24-91-119.stny.res.rr.com) a quitté (Ping timeout: 256 seconds) 2020-03-28 06:15:39 <-- mgrech (~mgrech@194-166-99-28.adsl.highway.telekom.at) a quitté (Ping timeout: 260 seconds) 2020-03-28 06:20:38 <-- l4mRh4X0r_ (l4mRh4X0r@pomacium.student.ipv6.utwente.nl) a quitté (Ping timeout: 246 seconds) 2020-03-28 06:22:28 --> Me4502 (~quassel@unaffiliated/me4502) a rejoint #mcdevs 2020-03-28 06:59:01 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2020-03-28 07:00:49 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 264 seconds) 2020-03-28 07:00:49 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2020-03-28 07:43:56 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-03-28 07:53:23 <-- Me4502 (~quassel@unaffiliated/me4502) a quitté (Quit: http://quassel-irc.org - Chat comfortably. Anywhere.) 2020-03-28 11:46:44 --> l4mRh4X0r_ (l4mRh4X0r@pomacium.student.ipv6.utwente.nl) a rejoint #mcdevs 2020-03-28 12:03:45 <-- tassu (~tassu@wikipedia/majavah) a quitté (Quit: Ping timeout (120 seconds)) 2020-03-28 12:04:05 --> tassu (~tassu@wikipedia/majavah) a rejoint #mcdevs 2020-03-28 13:11:29 --> gachirmx_2048khz (5abd8415@90.189.132.21) a rejoint #mcdevs 2020-03-28 13:45:56 gachirmx_2048khz hello 2020-03-28 13:46:14 gachirmx_2048khz having an issue doing a handshake, completely new to networking, someone please point me in the right direction? 2020-03-28 13:46:31 gachirmx_2048khz (as client) 2020-03-28 13:47:47 gachirmx_2048khz oh awesome as soon as i asked for help i found the cause of the issue 2020-03-28 14:08:36 <-- gachirmx_2048khz (5abd8415@90.189.132.21) a quitté (Remote host closed the connection) 2020-03-28 14:58:55 --> mgrech (~mgrech@194-166-99-28.adsl.highway.telekom.at) a rejoint #mcdevs 2020-03-28 17:05:05 Not-8b5f [minecraft-data] rom1504 pushed 1 commit to master [+2/-0/±3] https://git.io/JvQcW 2020-03-28 17:05:06 Not-8b5f [minecraft-data] rom1504 8ca49d1 - add initial files for 1.15.2 There has been no changes in 1.15.2, see https://wiki.vg/index.php?title=Pre-release_protocol&type=revision&diff=15262&oldid=15199#Change_Game_State 2020-03-28 17:10:33 Not-8b5f [minecraft-data] rom1504 pushed 1 commit to master [+0/-0/±1] https://git.io/JvQcz 2020-03-28 17:10:35 Not-8b5f [minecraft-data] rom1504 84dc8bb - Release 2.42.0 2020-03-28 17:12:43 Not-8b5f [minecraft-data] rom1504 tagged 84dc8bb as 2.42.0 https://git.io/JvQcw 2020-03-28 18:00:40 <-- dexter0 (~dexter0@2601:647:4580:c700:7c:10ff:fe00:b0b) a quitté (Read error: Connection reset by peer) 2020-03-28 18:01:15 --> dexter0 (~dexter0@c-73-222-1-210.hsd1.ca.comcast.net) a rejoint #mcdevs 2020-03-28 18:27:11 -- ProximystZNC est maintenant connu sous le nom Proximyst 2020-03-28 20:52:46 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 265 seconds) 2020-03-28 22:07:57 --> uis_ (~uis@95.165.156.213) a rejoint #mcdevs 2020-03-28 23:19:23 --> asv (~asv@2001:8a0:7e41:300:7554:35a8:13b0:e6fe) a rejoint #mcdevs 2020-03-28 23:20:05 asv Hi? 2020-03-28 23:21:56 <-- asv (~asv@2001:8a0:7e41:300:7554:35a8:13b0:e6fe) a quitté (Client Quit) 2020-03-29 03:45:49 <-- bildramer (~bildramer@p200300CF371C8D007F67408D92F33914.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2020-03-29 03:47:32 --> bildramer (~bildramer@p200300CF371C8D007F67408D92F33914.dip0.t-ipconnect.de) a rejoint #mcdevs 2020-03-29 03:59:14 <-- charims (~quassel@wsip-24-234-28-130.lv.lv.cox.net) a quitté (Ping timeout: 240 seconds) 2020-03-29 04:02:33 --> charims (~quassel@wsip-24-234-28-130.lv.lv.cox.net) a rejoint #mcdevs 2020-03-29 04:03:21 <-- charims (~quassel@wsip-24-234-28-130.lv.lv.cox.net) a quitté (Read error: Connection reset by peer) 2020-03-29 04:50:13 <-- dexter0 (~dexter0@c-73-222-1-210.hsd1.ca.comcast.net) a quitté (Ping timeout: 250 seconds) 2020-03-29 04:53:39 --> dexter0 (~dexter0@c-73-222-1-210.hsd1.ca.comcast.net) a rejoint #mcdevs 2020-03-29 05:01:16 --> Me4502 (~quassel@unaffiliated/me4502) a rejoint #mcdevs 2020-03-29 05:09:50 <-- Me4502 (~quassel@unaffiliated/me4502) a quitté (Read error: Connection reset by peer) 2020-03-29 05:09:54 <-- dexter0 (~dexter0@c-73-222-1-210.hsd1.ca.comcast.net) a quitté (Ping timeout: 240 seconds) 2020-03-29 06:42:51 --> dexter0 (~dexter0@2601:647:4580:c700:7c:10ff:fe00:b0b) a rejoint #mcdevs 2020-03-29 08:10:45 <-- dexter0 (~dexter0@2601:647:4580:c700:7c:10ff:fe00:b0b) a quitté (Ping timeout: 240 seconds) 2020-03-29 08:14:21 --> dexter0 (~dexter0@c-73-222-1-210.hsd1.ca.comcast.net) a rejoint #mcdevs 2020-03-29 08:26:53 <-- dexter0 (~dexter0@c-73-222-1-210.hsd1.ca.comcast.net) a quitté (Ping timeout: 250 seconds) 2020-03-29 08:29:36 --> dexter0 (~dexter0@c-73-222-1-210.hsd1.ca.comcast.net) a rejoint #mcdevs 2020-03-29 08:33:52 <-- mgrech (~mgrech@194-166-99-28.adsl.highway.telekom.at) a quitté (Ping timeout: 258 seconds) 2020-03-29 08:35:36 <-- dexter0 (~dexter0@c-73-222-1-210.hsd1.ca.comcast.net) a quitté (Ping timeout: 265 seconds) 2020-03-29 08:39:49 --> dexter0 (~dexter0@c-73-222-1-210.hsd1.ca.comcast.net) a rejoint #mcdevs 2020-03-29 08:48:01 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-03-29 11:31:52 --> Me4502 (~quassel@unaffiliated/me4502) a rejoint #mcdevs 2020-03-29 12:08:40 Not-8b5f [minecraft-data] timmyRS pushed 1 commit to master [+2/-0/±3] https://git.io/JvQ79 2020-03-29 12:08:42 Not-8b5f [minecraft-data] sbh1311 58575d2 - Update protocol to 20w13b 2020-03-29 12:22:06 Not-8b5f [minecraft-data] timmyRS pushed 1 commit to master [+0/-2/±3] https://git.io/JvQ5q 2020-03-29 12:22:08 Not-8b5f [minecraft-data] timmyRS ac8de32 - Revert "Update protocol to 20w13b" This reverts commit 58575d2581288d8fb0f7166bdc1259055d067e42. 2020-03-29 13:13:15 <-- wvffle (~wvffle@host-46-175-47-49.wtvk.pl) a quitté (Quit: ZNC 1.7.5 - https://znc.in) 2020-03-29 13:52:25 <-- Pyker (~pyker@hexagon.pyker.net) a quitté (Remote host closed the connection) 2020-03-29 13:52:51 --> Pyker (~pyker@hexagon.pyker.net) a rejoint #mcdevs 2020-03-29 15:47:49 <-- Me4502 (~quassel@unaffiliated/me4502) a quitté (Read error: Connection reset by peer) 2020-03-29 16:35:18 --> mgrech (~mgrech@194-166-99-28.adsl.highway.telekom.at) a rejoint #mcdevs 2020-03-29 17:39:42 --> FireCubez (29ea8486@gateway/web/cgi-irc/kiwiirc.com/ip.41.234.132.134) a rejoint #mcdevs 2020-03-29 17:39:50 FireCubez ello 2020-03-29 17:40:17 FireCubez I have a question about the Position data type 2020-03-29 17:41:21 FireCubez so apparantly, x is 26 MSBs 2020-03-29 17:41:30 timmyRS Which version 2020-03-29 17:41:36 FireCubez doesnt matter does it 2020-03-29 17:41:41 timmyRS It does 2020-03-29 17:41:46 FireCubez well, protocol 47 2020-03-29 17:41:48 FireCubez 1.8 2020-03-29 17:41:58 timmyRS Yeah, then that's wrong 2020-03-29 17:42:02 FireCubez huh 2020-03-29 17:42:05 FireCubez ok 2020-03-29 17:42:10 FireCubez i didnt even implement it yet 2020-03-29 17:42:20 FireCubez okay whats correct then 2020-03-29 17:43:11 timmyRS https://wiki.vg/index.php?title=Data_types&oldid=14256#Position 2020-03-29 17:43:30 FireCubez mkay 2020-03-29 17:43:31 FireCubez so 2020-03-29 17:43:39 FireCubez when it says 26 MSBs 2020-03-29 17:43:43 timmyRS The Position data type changed in 1.13 but the historic article of the protocol version has that article embedded which used the latest version 2020-03-29 17:44:41 FireCubez so we take the 26 MSBs, put it in a 32 bit integer, and now we have an unsigned value. then we need to subtract 2^25 if its greater than 2^25 right 2020-03-29 17:44:53 FireCubez or 2020-03-29 17:44:59 FireCubez subtract 2^26 2020-03-29 17:45:42 FireCubez yeah it says that 2020-03-29 17:45:57 FireCubez its since java shifting doesnt shift the sign 2020-03-29 17:46:02 timmyRS Yeah, that's just manually implementing the sign bit 2020-03-29 17:46:27 FireCubez well, rust (which is what im using) also doesnt shift the sign if you use a signed data type 2020-03-29 17:46:50 FireCubez i dont see how this works 2020-03-29 17:47:23 timmyRS You know how signed numbers work? 2020-03-29 17:47:35 FireCubez yes 2020-03-29 17:47:41 FireCubez but i cant visualize this :P 2020-03-29 17:48:04 timmyRS Instead of the language handling the sign bit, your software handles it, and that's what the pseudocode on the wiki represents 2020-03-29 17:48:29 FireCubez so its basically implementing a 26-bit type 2020-03-29 17:48:36 timmyRS Yes 2020-03-29 17:48:38 FireCubez *so its basically implementing a 26-bit two's complement type 2020-03-29 17:50:09 FireCubez i cant see why not shifting the sign bit, lets the language handle it 2020-03-29 17:50:14 FireCubez like the way java does it 2020-03-29 17:52:56 timmyRS I'm not sure about Java, but Java won't stop you with your Rust software, will it? :P 2020-03-29 17:53:26 FireCubez what? 2020-03-29 17:53:49 FireCubez i mean i dont know how this aaaaaaaaaaaaaah ok i need to visualize this in a better way 2020-03-29 17:53:52 FireCubez ill just test it 2020-03-29 17:53:55 FireCubez thanks 2020-03-29 18:56:57 <-- dexter0 (~dexter0@c-73-222-1-210.hsd1.ca.comcast.net) a quitté (Ping timeout: 250 seconds) 2020-03-29 19:42:10 --> dexter0 (~dexter0@2601:647:4580:c700:7c:10ff:fe00:b0b) a rejoint #mcdevs 2020-03-29 21:17:52 <-- FireCubez (29ea8486@gateway/web/cgi-irc/kiwiirc.com/ip.41.234.132.134) a quitté (Remote host closed the connection) 2020-03-29 22:20:25 --> FireCubez (29ea8486@gateway/web/cgi-irc/kiwiirc.com/ip.41.234.132.134) a rejoint #mcdevs 2020-03-29 22:21:18 <-- FireCubez (29ea8486@gateway/web/cgi-irc/kiwiirc.com/ip.41.234.132.134) a quitté (Remote host closed the connection) 2020-03-29 23:07:14 <-- balrog (~balrog@unaffiliated/balrog) a quitté (Ping timeout: 240 seconds) 2020-03-29 23:10:52 --> thekinrar (~thekinrar@179.89.21.93.rev.sfr.net) a rejoint #mcdevs 2020-03-29 23:11:07 --> balrog (~balrog@unaffiliated/balrog) a rejoint #mcdevs 2020-03-29 23:21:43 <-- balrog (~balrog@unaffiliated/balrog) a quitté (Ping timeout: 250 seconds) 2020-03-29 23:25:23 --> balrog (~balrog@unaffiliated/balrog) a rejoint #mcdevs 2020-03-29 23:41:08 <-- balrog (~balrog@unaffiliated/balrog) a quitté (Ping timeout: 256 seconds) 2020-03-29 23:43:12 --> balrog (~balrog@unaffiliated/balrog) a rejoint #mcdevs 2020-03-30 00:28:59 <-- Andrio (Andrio@questers-rest.andriocelos.net) a quitté (Quit: while already on Charon's boat.) 2020-03-30 00:30:31 --> Andrio (Andrio@questers-rest.andriocelos.net) a rejoint #mcdevs 2020-03-30 00:36:32 <-- kashike (kashike@unaffiliated/kashike) a quitté (Ping timeout: 246 seconds) 2020-03-30 00:40:29 --> kashike (kashike@unaffiliated/kashike) a rejoint #mcdevs 2020-03-30 00:45:39 <-- sudden (~lax@unaffiliated/laxask) a quitté (Ping timeout: 265 seconds) 2020-03-30 00:46:14 <-- Defolos (~Defolos@fedora/defolos) a quitté (Remote host closed the connection) 2020-03-30 00:46:25 --> sudden (~lax@unaffiliated/laxask) a rejoint #mcdevs 2020-03-30 00:48:22 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-03-30 00:52:59 <-- JuniorJPDJ (juniorjp1@gateway/shell/matrix.org/x-siapzpjndqceauqb) a quitté (Ping timeout: 246 seconds) 2020-03-30 01:04:26 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 256 seconds) 2020-03-30 01:07:52 --> JuniorJPDJ (juniorjp1@gateway/shell/matrix.org/x-wnvsgiblflixmzsf) a rejoint #mcdevs 2020-03-30 02:23:38 <-- yawkat (~yawkat@cats.coffee) a quitté (Ping timeout: 246 seconds) 2020-03-30 02:43:52 --> yawkat (~yawkat@cats.coffee) a rejoint #mcdevs 2020-03-30 03:44:38 <-- mgrech (~mgrech@194-166-99-28.adsl.highway.telekom.at) a quitté (Ping timeout: 258 seconds) 2020-03-30 05:37:57 --> charims (~quassel@wsip-24-234-28-130.lv.lv.cox.net) a rejoint #mcdevs 2020-03-30 07:53:17 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-03-30 08:53:03 <-- thekinrar (~thekinrar@179.89.21.93.rev.sfr.net) a quitté (Ping timeout: 256 seconds) 2020-03-30 10:04:31 <-- tktech (~tktech@ec2-52-70-105-60.compute-1.amazonaws.com) a quitté (Ping timeout: 258 seconds) 2020-03-30 10:05:51 --> tktech (~tktech@ec2-52-70-105-60.compute-1.amazonaws.com) a rejoint #mcdevs 2020-03-30 11:23:29 -- uis_ est maintenant connu sous le nom uis 2020-03-30 14:03:15 --> Me4502 (~quassel@unaffiliated/me4502) a rejoint #mcdevs 2020-03-30 14:29:38 --> millerti (~millerti@cpe-66-24-91-119.stny.res.rr.com) a rejoint #mcdevs 2020-03-30 15:12:17 --> mgrech (~mgrech@194-166-99-28.adsl.highway.telekom.at) a rejoint #mcdevs 2020-03-30 15:14:39 --> Processus42_ (~leo@unaffiliated/processus42) a rejoint #mcdevs 2020-03-30 15:14:42 --> PotatOS (~Akkarin@hyperion.torchmind.com) a rejoint #mcdevs 2020-03-30 15:15:47 <-- Processus42 (~leo@unaffiliated/processus42) a quitté (Ping timeout: 240 seconds) 2020-03-30 15:15:48 <-- Akkarin (~Akkarin@hyperion.torchmind.com) a quitté (Ping timeout: 240 seconds) 2020-03-30 15:15:48 <-- stilbruch (stilbruch@gateway/shell/tilde.team/x-ghgbemtynmwigguw) a quitté (Ping timeout: 240 seconds) 2020-03-30 15:15:48 <-- kashike (kashike@unaffiliated/kashike) a quitté (Ping timeout: 240 seconds) 2020-03-30 15:15:48 <-- _123DMWM (~123DMWM@2601:18d:580:3870:3469:d454:6965:8253) a quitté (Ping timeout: 240 seconds) 2020-03-30 15:15:52 -- PotatOS est maintenant connu sous le nom Akkarin 2020-03-30 15:16:17 --> _123DMWM (~123DMWM@2601:18d:580:3870:c4dd:b590:6df:fade) a rejoint #mcdevs 2020-03-30 15:17:10 --> kashike (kashike@unaffiliated/kashike) a rejoint #mcdevs 2020-03-30 15:17:10 --> stilbruch (stilbruch@gateway/shell/tilde.team/x-rmgsrdwcdasjzhsx) a rejoint #mcdevs 2020-03-30 15:23:20 <-- uis (~uis@95.165.156.213) a quitté (Ping timeout: 256 seconds) 2020-03-30 15:24:04 --> uis (~uis@95.165.156.213) a rejoint #mcdevs 2020-03-30 15:29:01 <-- uis (~uis@95.165.156.213) a quitté (Ping timeout: 264 seconds) 2020-03-30 15:29:32 --> uis (~uis@95.165.156.213) a rejoint #mcdevs 2020-03-30 15:34:05 <-- uis (~uis@95.165.156.213) a quitté (Ping timeout: 240 seconds) 2020-03-30 15:34:32 --> uis (~uis@95.165.156.213) a rejoint #mcdevs 2020-03-30 15:39:05 <-- uis (~uis@95.165.156.213) a quitté (Ping timeout: 240 seconds) 2020-03-30 15:39:32 --> uis (~uis@95.165.156.213) a rejoint #mcdevs 2020-03-30 15:44:06 <-- uis (~uis@95.165.156.213) a quitté (Ping timeout: 240 seconds) 2020-03-30 15:44:33 --> uis (~uis@95.165.156.213) a rejoint #mcdevs 2020-03-30 15:49:15 <-- uis (~uis@95.165.156.213) a quitté (Ping timeout: 260 seconds) 2020-03-30 15:49:32 --> uis (~uis@95.165.156.213) a rejoint #mcdevs 2020-03-30 15:50:36 <-- Defolos (~Defolos@fedora/defolos) a quitté (Quit: Lost terminal) 2020-03-30 15:51:03 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-03-30 15:54:06 <-- uis (~uis@95.165.156.213) a quitté (Ping timeout: 240 seconds) 2020-03-30 15:56:03 --> uis (~uis@95.165.156.213) a rejoint #mcdevs 2020-03-30 16:00:34 <-- uis (~uis@95.165.156.213) a quitté (Ping timeout: 240 seconds) 2020-03-30 16:01:32 --> uis (~uis@95.165.156.213) a rejoint #mcdevs 2020-03-30 16:02:54 <-- Me4502 (~quassel@unaffiliated/me4502) a quitté (Read error: Connection reset by peer) 2020-03-30 16:53:57 <-- l4mRh4X0r_ (l4mRh4X0r@pomacium.student.ipv6.utwente.nl) a quitté (Quit: Hoei!) 2020-03-30 16:56:34 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 240 seconds) 2020-03-30 16:57:50 --> l4mRh4X0r_ (l4mRh4X0r@pomacium.student.ipv6.utwente.nl) a rejoint #mcdevs 2020-03-30 16:58:43 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-03-30 17:53:14 -- irc : déconnecté du serveur 2020-03-30 17:53:38 --> rom1504 (rom1504@rom1504.fr) a rejoint #mcdevs 2020-03-30 17:53:38 -- Le titre pour #mcdevs est "A haunt for developers working on projects related to Minecraft | Website & Rules: http://wiki.vg/MCDevs/rules | Wiki: http://wiki.vg | Channel is publicly logged as of Feb.25/13 https://logs.rom1504.fr/" 2020-03-30 17:53:38 -- Titre défini par tktech (~tktech@ec2-52-70-105-60.compute-1.amazonaws.com) le jeu., 11 mai 2017 00:28:31 2020-03-30 17:53:38 -- Canal #mcdevs : 107 pseudos (1 op, 14 voices, 92 normaux) 2020-03-30 17:54:02 <-- I9hdkill (~quassel@2001:41d0:d:1cb7::) a quitté (Quit: No Ping reply in 180 seconds.) 2020-03-30 17:55:17 -- Canal créé le lun., 06 déc. 2010 12:22:40 2020-03-30 17:56:07 --> I9hdkill (~quassel@2001:41d0:d:1cb7::) a rejoint #mcdevs 2020-03-30 18:47:58 --> keg[m] (kegicyname@gateway/shell/matrix.org/x-dtajhkuxwoncjdqr) a rejoint #mcdevs 2020-03-30 19:35:42 --> JuniorJPDJ (juniorjp1@gateway/shell/matrix.org/x-bjvzatalkkdoncrf) a rejoint #mcdevs 2020-03-30 19:35:42 --> chibill (chibillmat@gateway/shell/matrix.org/x-vxwqjiifavwgckjy) a rejoint #mcdevs 2020-03-30 19:35:50 --> wvffle (wvfflematr@gateway/shell/matrix.org/x-oubmmfpxnaqotzde) a rejoint #mcdevs 2020-03-30 20:08:59 <-- Defolos (~Defolos@fedora/defolos) a quitté (Quit: Lost terminal) 2020-03-30 20:09:43 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-03-30 23:14:29 Not-8b5f [minecraft-data] rom1504 pushed 4 commits to master [+4/-0/±7] https://git.io/Jv7pQ 2020-03-30 23:14:31 Not-8b5f [minecraft-data] sbh1311 1a6d002 - updated 20w13b empty 2020-03-30 23:14:32 Not-8b5f [minecraft-data] sbh1311 75a1014 - updated 20w13b files 2020-03-30 23:14:34 Not-8b5f [minecraft-data] sbh1311 38f8471 - fixed the names i changed 2020-03-30 23:14:36 Not-8b5f [minecraft-data] rom1504 79b2150 - Merge pull request #267 from sbh1311/master udpate 20w13b 2 try 2020-03-30 23:15:46 Not-8b5f [minecraft-data] rom1504 pushed 5 commits to master [+10/-0/±2] https://git.io/Jv7pF 2020-03-30 23:15:48 Not-8b5f [minecraft-data] Gjum 4072c7c - add block collision shapes for 1.12, 1.14, 1.15 2020-03-30 23:15:49 Not-8b5f [minecraft-data] Gjum faf0e73 - add blockCollisionShapes schema 2020-03-30 23:15:51 Not-8b5f [minecraft-data] Gjum d6044b9 - add test for block collision shapes 2020-03-30 23:15:52 Not-8b5f [minecraft-data] ... and 2 more commits. 2020-03-30 23:20:40 Not-8b5f [minecraft-data] rom1504 pushed 2 commits to master [+0/-0/±2] https://git.io/Jv7hk 2020-03-30 23:20:42 Not-8b5f [minecraft-data] rom1504 4aaece3 - Add 1.16 support and block collision shape in readme 2020-03-30 23:20:43 Not-8b5f [minecraft-data] rom1504 7ad3f87 - Release 2.43.0 2020-03-30 23:20:45 Not-8b5f [minecraft-data] rom1504 tagged 7ad3f87 as 2.43.0 https://git.io/Jv7hL 2020-03-30 23:38:50 rom1504 Hello people, could you please confirm that uuid encoding specified there https://wiki.vg/Pre-release_protocol#Login_Success is different from uuid encoding used everywhere else in protocol (for example https://wiki.vg/Protocol#Spawn_Player ) ? 2020-03-30 23:39:12 rom1504 I guess you might know pokechu22 ? 2020-03-30 23:40:25 rom1504 looks pretty similar to me 2020-03-30 23:42:13 timmyRS I'm pretty sure that results in the same bytes as simply writing the 16 bytes of a UUID, but it's just a less efficient way of doing it. Microsoft style and all. 2020-03-30 23:42:14 +pokechu22 I think it comes out to the same thing in practice, but Mojang does it differently internally (with 2 longs instead of 4 ints for everything else) 2020-03-30 23:42:56 +pokechu22 It came with a change to the NBT format for UUIDs so that they were also int arrays, apparently so that commands can manipulate them better 2020-03-30 23:43:36 timmyRS But does this implementation specific really need to be documented for the sake of some poor developers trying to implement the Login Success packet? 2020-03-30 23:44:09 timmyRS Unless Java does something weird with the sign bits of these 4 ints, the field type really should just be UUID, because it's exactly the same over the wire. 2020-03-30 23:45:33 +pokechu22 Yeah, it probably isn't necessary; the whole thing just comes from it showing up differently in burger 2020-03-30 23:45:40 Not-8b5f [minecraft-data] rom1504 pushed 1 commit to master [+0/-0/±1] https://git.io/Jv7hd 2020-03-30 23:45:41 Not-8b5f [minecraft-data] rom1504 cdb37fc - use UUID type in packet_success in 1.16 since that's what it is 2020-03-30 23:46:06 rom1504 yeah it all makes sense thanks 2020-03-30 23:46:19 rom1504 I think wiki.vg indeed should just say it's uuid 2020-03-30 23:46:29 rom1504 it doesn't matter too much what mojang did internally 2020-03-30 23:47:59 Not-8b5f [minecraft-data] rom1504 pushed 1 commit to master [+0/-0/±1] https://git.io/Jv7hA 2020-03-30 23:48:00 Not-8b5f [minecraft-data] rom1504 6bb55f0 - Release 2.44.0 2020-03-30 23:48:03 Not-8b5f [minecraft-data] rom1504 tagged 6bb55f0 as 2.44.0 https://git.io/Jv7hx 2020-03-30 23:54:51 +pokechu22 https://wiki.vg/index.php?title=Pre-release_protocol&diff=15392&oldid=15391 - I think this explains it well enough? 2020-03-30 23:55:37 rom1504 yeah nice 2020-03-30 23:56:59 rom1504 alright node-minecraft-protocol now has support for that last 20w13b support :) 2020-03-31 01:45:41 <-- millerti (~millerti@cpe-66-24-91-119.stny.res.rr.com) a quitté (Ping timeout: 256 seconds) 2020-03-31 02:04:34 <-- jkdhn (jack@jkdhn.me) a quitté (Remote host closed the connection) 2020-03-31 02:49:15 <-- yawkat (~yawkat@cats.coffee) a quitté (Ping timeout: 250 seconds) 2020-03-31 03:04:51 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 250 seconds) 2020-03-31 03:06:35 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-03-31 03:07:51 --> yawkat (~yawkat@cats.coffee) a rejoint #mcdevs 2020-03-31 07:41:42 --> mgrech_ (~mgrech@194-166-99-28.adsl.highway.telekom.at) a rejoint #mcdevs 2020-03-31 07:44:33 <-- mgrech (~mgrech@194-166-99-28.adsl.highway.telekom.at) a quitté (Ping timeout: 265 seconds) 2020-03-31 08:32:08 --> independent (~independe@bas4-montrealak-67-71-183-74.dsl.bell.ca) a rejoint #mcdevs 2020-03-31 08:48:13 <-- mgrech_ (~mgrech@194-166-99-28.adsl.highway.telekom.at) a quitté (Ping timeout: 264 seconds) 2020-03-31 09:21:42 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 256 seconds) 2020-03-31 09:21:54 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-03-31 12:24:38 <-- RoboMWM (~RoboMWM@tf.robomwm.com) a quitté (Read error: Connection reset by peer) 2020-03-31 12:24:58 --> RoboMWM (~RoboMWM@tf.robomwm.com) a rejoint #mcdevs 2020-03-31 12:26:09 <-- independent (~independe@bas4-montrealak-67-71-183-74.dsl.bell.ca) a quitté (Read error: Connection reset by peer) 2020-03-31 12:45:16 --> Me4502 (~quassel@unaffiliated/me4502) a rejoint #mcdevs 2020-03-31 14:07:18 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 256 seconds) 2020-03-31 14:09:04 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-03-31 14:12:25 <-- Me4502 (~quassel@unaffiliated/me4502) a quitté (Read error: Connection reset by peer) 2020-03-31 14:43:35 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 260 seconds) 2020-03-31 14:45:08 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-03-31 14:53:53 <-- Defolos (~Defolos@fedora/defolos) a quitté (Quit: Lost terminal) 2020-03-31 14:54:14 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-03-31 16:58:46 --> mgrech (~mgrech@194-166-99-28.adsl.highway.telekom.at) a rejoint #mcdevs 2020-03-31 18:49:05 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 256 seconds) 2020-03-31 18:50:34 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-03-31 19:37:38 <-- Techcable_ (znc@irc.techcable.net) a quitté (Read error: Connection reset by peer) 2020-03-31 19:38:08 --> Techcable (znc@irc.techcable.net) a rejoint #mcdevs 2020-03-31 20:06:49 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 264 seconds) 2020-03-31 20:07:12 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-03-31 20:17:55 <-- pokechu22 (~pokechu22@50-47-111-46.evrt.wa.frontiernet.net) a quitté (Ping timeout: 250 seconds) 2020-03-31 20:25:21 --> pokechu22 (~pokechu22@50-47-111-46.evrt.wa.frontiernet.net) a rejoint #mcdevs 2020-03-31 20:25:21 -- Mode #mcdevs [+v pokechu22] par ChanServ 2020-03-31 20:44:49 --> millerti (~millerti@cpe-66-24-91-119.stny.res.rr.com) a rejoint #mcdevs 2020-04-01 00:27:05 <-- uis (~uis@95.165.156.213) a quitté (Ping timeout: 240 seconds) 2020-04-01 00:30:32 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-01 01:57:37 <-- Tux (~tux@unaffiliated/tux) a quitté (Ping timeout: 252 seconds) 2020-04-01 01:57:45 --> Tux (~tux@107.161.31.111) a rejoint #mcdevs 2020-04-01 01:57:45 <-- Tux (~tux@107.161.31.111) a quitté (Changing host) 2020-04-01 01:57:45 --> Tux (~tux@unaffiliated/tux) a rejoint #mcdevs 2020-04-01 04:26:44 <-- DemonWav (~DemonWav@unaffiliated/demonwav) a quitté #mcdevs 2020-04-01 06:14:23 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2020-04-01 06:16:25 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 264 seconds) 2020-04-01 06:16:26 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2020-04-01 07:50:46 --> grmx (~grmx@90.189.132.21) a rejoint #mcdevs 2020-04-01 08:49:19 <-- MisterVector (Vector@cpe-172-90-152-76.socal.res.rr.com) a quitté (Read error: Connection reset by peer) 2020-04-01 08:49:58 --> MisterVector (Vector@cpe-172-90-152-76.socal.res.rr.com) a rejoint #mcdevs 2020-04-01 09:38:11 <-- grmx (~grmx@90.189.132.21) a quitté (Quit: Leaving) 2020-04-01 09:50:14 <-- mgrech (~mgrech@194-166-99-28.adsl.highway.telekom.at) a quitté (Ping timeout: 240 seconds) 2020-04-01 11:11:25 <-- SpaceManiac (~SpaceMani@c-73-116-110-236.hsd1.ca.comcast.net) a quitté (Ping timeout: 240 seconds) 2020-04-01 11:16:22 --> SpaceManiac (~SpaceMani@2601:200:4400:103::10bc) a rejoint #mcdevs 2020-04-01 11:16:22 -- Mode #mcdevs [+v SpaceManiac] par ChanServ 2020-04-01 11:50:34 <-- x10A94 (~x@207.154.230.175) a quitté (Ping timeout: 256 seconds) 2020-04-01 11:50:52 --> x10A94 (~x@207.154.230.175) a rejoint #mcdevs 2020-04-01 12:34:13 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 250 seconds) 2020-04-01 12:35:54 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-04-01 12:37:29 --> Me4502 (~quassel@unaffiliated/me4502) a rejoint #mcdevs 2020-04-01 12:55:34 --> jkdhn (jack@jkdhn.me) a rejoint #mcdevs 2020-04-01 13:04:41 <-- jkdhn (jack@jkdhn.me) a quitté (Quit: Disconnected) 2020-04-01 13:06:54 --> jkdhn (jack@jkdhn.me) a rejoint #mcdevs 2020-04-01 13:17:23 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 260 seconds) 2020-04-01 13:19:03 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-04-01 14:28:41 <-- Defolos (~Defolos@fedora/defolos) a quitté (Quit: Lost terminal) 2020-04-01 14:29:18 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-04-01 14:32:01 <-- charims (~quassel@wsip-24-234-28-130.lv.lv.cox.net) a quitté (Ping timeout: 264 seconds) 2020-04-01 14:35:43 <-- Me4502 (~quassel@unaffiliated/me4502) a quitté (Read error: Connection reset by peer) 2020-04-01 14:37:44 --> charims (~quassel@wsip-24-234-28-130.lv.lv.cox.net) a rejoint #mcdevs 2020-04-01 15:01:49 <-- charims (~quassel@wsip-24-234-28-130.lv.lv.cox.net) a quitté (Ping timeout: 265 seconds) 2020-04-01 15:01:54 --> charims_ (~quassel@wsip-24-234-28-130.lv.lv.cox.net) a rejoint #mcdevs 2020-04-01 15:13:43 <-- Defolos (~Defolos@fedora/defolos) a quitté (Quit: Lost terminal) 2020-04-01 15:17:23 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-04-01 16:32:59 <-- charims_ (~quassel@wsip-24-234-28-130.lv.lv.cox.net) a quitté (Ping timeout: 256 seconds) 2020-04-01 16:39:12 --> charims (~quassel@wsip-24-234-28-130.lv.lv.cox.net) a rejoint #mcdevs 2020-04-01 16:44:54 <-- charims (~quassel@wsip-24-234-28-130.lv.lv.cox.net) a quitté (Ping timeout: 256 seconds) 2020-04-01 16:46:34 <-- Defolos (~Defolos@fedora/defolos) a quitté (Quit: Lost terminal) 2020-04-01 16:46:50 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-04-01 16:57:57 --> charims (~quassel@wsip-24-234-28-130.lv.lv.cox.net) a rejoint #mcdevs 2020-04-01 17:04:44 <-- charims (~quassel@wsip-24-234-28-130.lv.lv.cox.net) a quitté (Ping timeout: 256 seconds) 2020-04-01 17:07:02 --> charims (~quassel@wsip-24-234-28-130.lv.lv.cox.net) a rejoint #mcdevs 2020-04-01 17:10:22 Not-8b5f [minecraft-data] automatic-beyond-belief pushed 1 commit to master [+0/-0/±1] https://git.io/JvdB1 2020-04-01 17:10:23 Not-8b5f [minecraft-data] automatic-beyond-belief 08ab284 - Add 20w14infinite to common/protocolVersions.json 2020-04-01 17:13:31 timmyRS This April Fools joke just made me think my script broke for a second (: 2020-04-01 17:13:36 timmyRS Well played, Mojang 2020-04-01 17:13:47 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 256 seconds) 2020-04-01 17:15:46 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-04-01 17:15:52 Not-8b5f [Burger] New data now avaliable for 20w14infinite: 2020-04-01 17:15:53 Not-8b5f [Burger] Diff from 20w13b: https://pokechu22.github.io/Burger/diff_20w13b_20w14infinite.html (https://pokechu22.github.io/Burger/diff_20w13b_20w14infinite.json) 2020-04-01 17:15:55 Not-8b5f [Burger] Full data: https://pokechu22.github.io/Burger/20w14infinite.html (https://pokechu22.github.io/Burger/20w14infinite.json) 2020-04-01 17:21:01 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 265 seconds) 2020-04-01 17:21:53 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-04-01 18:21:45 --> PolarizedIons (polarizedi@unaffiliated/polarizedions) a rejoint #mcdevs 2020-04-01 18:44:01 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 264 seconds) 2020-04-01 18:45:39 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-04-01 19:27:17 +pokechu22 Fix for sounds there: https://github.com/mcdevs/Burger/compare/ab86f3e...cd69a86 / https://pokechu22.github.io/Burger/diff_20w13b_20w14infinite.html 2020-04-01 19:44:11 bswartz Snapshot today? 2020-04-01 19:51:35 --> timmyRS_ (~timmyRS@185.245.84.124) a rejoint #mcdevs 2020-04-01 19:51:39 --> Sainan (~Sai@tim.private.hell.sh) a rejoint #mcdevs 2020-04-01 19:56:26 <-- timmyRS (~timmyRS@tim.private.hell.sh) a quitté (Quit: Goodbye) 2020-04-01 19:56:57 <-- timmyRS_ (~timmyRS@185.245.84.124) a quitté #mcdevs ("Leaving") 2020-04-01 20:31:20 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 256 seconds) 2020-04-01 20:31:33 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-04-01 21:30:58 bswartz Oh I see, the snapshot today is an april fools prank, so there will be no 1.16-related update this week 2020-04-01 21:32:04 <-- bigfoot547 (bigfoot@unaffiliated/bigfoot547) a quitté (Quit: ZNC 1.7.x-git-3-46544d90 - https://znc.in) 2020-04-01 21:32:32 --> bigfoot547 (~bigfoot@unaffiliated/bigfoot547) a rejoint #mcdevs 2020-04-01 21:33:58 Sainan There will be no more updates, this is the last one, with all the things! 2020-04-01 21:35:14 Sainan (I feel like I should state that I am timmyRS and henceforth known as Sainan.) 2020-04-01 21:38:02 bswartz Well, the addition of Netherite did suggest that the end of the world was soon 2020-04-02 00:02:02 --> caelunshun (~caelum@75-169-54-15.slkc.qwest.net) a rejoint #mcdevs 2020-04-02 00:07:13 <-- EvilJStoker (jstoker@unaffiliated/jstoker) a quitté (Killed (adams.freenode.net (Nickname regained by services))) 2020-04-02 00:07:18 --> EvilJStoker (jstoker@unaffiliated/jstoker) a rejoint #mcdevs 2020-04-02 00:08:07 <-- e (e@freenode/staff/spy.edk) a quitté (*.net *.split) 2020-04-02 00:44:49 --> e (e@freenode/staff/spy.edk) a rejoint #mcdevs 2020-04-02 02:19:30 <-- millerti (~millerti@cpe-66-24-91-119.stny.res.rr.com) a quitté (Ping timeout: 256 seconds) 2020-04-02 02:42:09 <-- yawkat (~yawkat@cats.coffee) a quitté (Ping timeout: 256 seconds) 2020-04-02 03:04:10 --> yawkat (~yawkat@cats.coffee) a rejoint #mcdevs 2020-04-02 06:44:17 x10A94 so I got a problem: the chunks that I yanked from the vanilla server don't want to render 2020-04-02 06:44:33 x10A94 Surely they don't need the lighting packet to render, right? 2020-04-02 06:44:47 x10A94 They didn't before this. 2020-04-02 06:49:26 +pokechu22 You've got some chunks loaded around them, right, and aren't trying to render just a single chunk? IIRC they need a 1-chunk margin 2020-04-02 06:49:32 x10A94 yes, I am 2020-04-02 06:49:50 x10A94 the kicker is that the particles are still rendering 2020-04-02 06:50:06 x10A94 so the client is aware of the world, just.. not rendering it 2020-04-02 06:52:50 +pokechu22 I assume the blocks are also showing up in F3 if you look at them? 2020-04-02 06:53:31 x10A94 no, just says "waiting for chunk" 2020-04-02 06:53:37 x10A94 and I can't move 2020-04-02 06:53:41 x10A94 OH 2020-04-02 06:53:44 x10A94 it's the uhhhh 2020-04-02 06:53:53 x10A94 the current chunk you're in thingy 2020-04-02 06:54:38 +pokechu22 Update View Position? 2020-04-02 06:54:40 x10A94 yes 2020-04-02 06:54:53 x10A94 I thought I was sending it, but it looks like I wasn't 2020-04-02 06:55:29 +pokechu22 I remember someone else had a rendering problem and it was resolved by that, a week or 2 ago 2020-04-02 06:56:06 x10A94 yeah, it's.. kind of a weird packet 2020-04-02 06:58:33 x10A94 ..that did not resolve it 2020-04-02 06:58:53 x10A94 it's just position / 16, right? 2020-04-02 07:11:18 x10A94 the light also was not it, so unless I'm not logging chunks correctly I'm out of ideas 2020-04-02 07:12:43 x10A94 oh, you have to send it _before_ you send the chunks. Why the particle effect was still there is beyond me. 2020-04-02 09:29:18 <-- chibill (chibillmat@gateway/shell/matrix.org/x-vxwqjiifavwgckjy) a quitté (Quit: killed) 2020-04-02 09:29:19 <-- JuniorJPDJ (juniorjp1@gateway/shell/matrix.org/x-bjvzatalkkdoncrf) a quitté (Quit: killed) 2020-04-02 09:29:24 <-- keg[m] (kegicyname@gateway/shell/matrix.org/x-dtajhkuxwoncjdqr) a quitté (Quit: killed) 2020-04-02 09:29:45 <-- wvffle (wvfflematr@gateway/shell/matrix.org/x-oubmmfpxnaqotzde) a quitté (Quit: killed) 2020-04-02 09:32:34 --> mgrech (~mgrech@194-166-99-28.adsl.highway.telekom.at) a rejoint #mcdevs 2020-04-02 09:59:37 --> wvffle (wvfflematr@gateway/shell/matrix.org/x-gkeyyuwijpvvomkw) a rejoint #mcdevs 2020-04-02 10:30:45 <-- mundus (~mundus201@unaffiliated/mundus2018) a quitté (Quit: ZNC - http://znc.in) 2020-04-02 10:39:38 --> JuniorJPDJ (juniorjp1@gateway/shell/matrix.org/x-nhdpmydjrbrdbsjm) a rejoint #mcdevs 2020-04-02 10:39:38 --> chibill (chibillmat@gateway/shell/matrix.org/x-htudqnmvgtratekt) a rejoint #mcdevs 2020-04-02 10:39:38 --> keg[m] (kegicyname@gateway/shell/matrix.org/x-ckkfbdgnlcwedafk) a rejoint #mcdevs 2020-04-02 11:34:27 <-- Disconsented (~quassel@disconsented.com) a quitté (Quit: http://quassel-irc.org - Chat comfortably. Anywhere.) 2020-04-02 11:36:59 --> Disconsented (~quassel@disconsented.com) a rejoint #mcdevs 2020-04-02 12:24:34 --> Me4502 (~quassel@unaffiliated/me4502) a rejoint #mcdevs 2020-04-02 14:04:50 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 256 seconds) 2020-04-02 14:06:24 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-04-02 14:08:08 --> VADemon (~VADemon@2a01:4f8:212:2f1d:88::41) a rejoint #mcdevs 2020-04-02 14:36:28 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 258 seconds) 2020-04-02 14:38:23 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-04-02 15:04:57 --> PolarizedIons7 (polarizedi@unaffiliated/polarizedions) a rejoint #mcdevs 2020-04-02 15:19:23 <-- PolarizedIons (polarizedi@unaffiliated/polarizedions) a quitté (Read error: Connection reset by peer) 2020-04-02 15:19:23 -- PolarizedIons7 est maintenant connu sous le nom PolarizedIons 2020-04-02 15:21:49 <-- mgrech (~mgrech@194-166-99-28.adsl.highway.telekom.at) a quitté (Ping timeout: 264 seconds) 2020-04-02 16:16:26 <-- Defolos (~Defolos@fedora/defolos) a quitté (Quit: Lost terminal) 2020-04-02 16:16:51 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-04-02 17:06:26 <-- Me4502 (~quassel@unaffiliated/me4502) a quitté (Read error: Connection reset by peer) 2020-04-02 17:12:39 <-- caelunshun (~caelum@75-169-54-15.slkc.qwest.net) a quitté (Ping timeout: 265 seconds) 2020-04-02 17:14:23 --> caelunshun (~caelum@75-169-54-15.slkc.qwest.net) a rejoint #mcdevs 2020-04-02 17:19:47 --> mgrech (~mgrech@194-166-99-28.adsl.highway.telekom.at) a rejoint #mcdevs 2020-04-02 17:27:09 <-- SpaceManiac (~SpaceMani@2601:200:4400:103::10bc) a quitté (Ping timeout: 272 seconds) 2020-04-02 17:31:16 --> SpaceManiac (~SpaceMani@c-73-116-110-236.hsd1.ca.comcast.net) a rejoint #mcdevs 2020-04-02 17:31:16 -- Mode #mcdevs [+v SpaceManiac] par ChanServ 2020-04-02 18:10:26 Not-8b5f [minecraft-data] automatic-beyond-belief pushed 1 commit to master [+0/-0/±1] https://git.io/JvFZP 2020-04-02 18:10:28 Not-8b5f [minecraft-data] automatic-beyond-belief b6d309b - Add 20w14a to common/protocolVersions.json 2020-04-02 18:14:18 Not-8b5f [Burger] New data now avaliable for 20w14a: 2020-04-02 18:14:20 Not-8b5f [Burger] Diff from 20w14infinite: https://pokechu22.github.io/Burger/diff_20w14infinite_20w14a.html (https://pokechu22.github.io/Burger/diff_20w14infinite_20w14a.json) 2020-04-02 18:14:21 Not-8b5f [Burger] Full data: https://pokechu22.github.io/Burger/20w14a.html (https://pokechu22.github.io/Burger/20w14a.json) 2020-04-02 18:15:00 <-- PolarizedIons (polarizedi@unaffiliated/polarizedions) a quitté (Ping timeout: 265 seconds) 2020-04-02 18:16:15 --> PolarizedIons (polarizedi@unaffiliated/polarizedions) a rejoint #mcdevs 2020-04-02 18:55:07 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 256 seconds) 2020-04-02 18:56:51 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-04-02 19:02:54 Not-8b5f [Burger] New data now avaliable for 20w14a: 2020-04-02 19:02:56 Not-8b5f [Burger] Diff from 20w13b: https://pokechu22.github.io/Burger/diff_20w13b_20w14a.html (https://pokechu22.github.io/Burger/diff_20w13b_20w14a.json) 2020-04-02 19:02:57 Not-8b5f [Burger] Full data: https://pokechu22.github.io/Burger/20w14a.html (https://pokechu22.github.io/Burger/20w14a.json) 2020-04-02 19:53:20 --> Defolos__ (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-04-02 19:54:24 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 256 seconds) 2020-04-02 20:43:44 MiniDigger can you generate a diff between 13b and 14a when you got time? 2020-04-02 20:44:09 +pokechu22 Look above you :P 2020-04-02 20:50:21 tktech Wiki's down for updates for a couple of moments 2020-04-02 20:59:17 <-- Defolos__ (~Defolos@fedora/defolos) a quitté (Quit: leaving) 2020-04-02 21:03:33 tktech How the hell did the MediaWiki migrate tool migrate everything *except* the box template 2020-04-02 21:04:17 tktech Huh, because it somehow had 0 revisions, including the revision that should have created it 2020-04-02 21:07:53 tktech Should be all good, that was a major version upgrade so if you notice any bugs give me a poke. 2020-04-02 21:39:57 MiniDigger oh, nice 2020-04-02 21:40:43 MiniDigger anyone has an idea why I may read a login success (0x03) as a login disconnect (0x00)? 2020-04-02 21:41:08 MiniDigger I can see that the server send a setcompression, which I read and ignore, and the a login success (debugging the server) 2020-04-02 21:41:26 MiniDigger but I only read the setcompression and then 0x00 with reason $9 2020-04-02 21:44:37 +pokechu22 Err, you're ignoring set compression? Remember that the packet format changes afterwards: https://wiki.vg/Protocol#Packet_format 2020-04-02 21:45:17 MiniDigger I only saw that its optional 2020-04-02 21:45:22 MiniDigger so I cant skip compression? 2020-04-02 21:46:06 MiniDigger disabling compression in the server.properties works... 2020-04-02 21:46:08 Sainan It's optional for the server 2020-04-02 21:46:14 MiniDigger quess ill have to implement compression as a client 2020-04-02 22:58:28 --> dfvdfvdfv (6036a2de@S0106f0f24967d933.no.shawcable.net) a rejoint #mcdevs 2020-04-02 23:01:08 <-- caelunshun (~caelum@75-169-54-15.slkc.qwest.net) a quitté (Ping timeout: 265 seconds) 2020-04-02 23:05:02 --> caelunshun (~caelum@75-169-54-15.slkc.qwest.net) a rejoint #mcdevs 2020-04-02 23:36:08 <-- dfvdfvdfv (6036a2de@S0106f0f24967d933.no.shawcable.net) a quitté (Remote host closed the connection) 2020-04-03 00:36:14 tktech Anyone have outright objections to the Unreal Engine documentation on wiki.vg under the Unreal: namespace? 2020-04-03 00:41:57 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-04-03 00:43:48 +pokechu22 As long as it's a real namespace and search can be configured to ignore or exclusively use it, I see no issue with that. Which seems to be the case, so I'm fine with it 2020-04-03 01:44:08 Not-8b5f [flying-squid] rom1504 pushed 5 commits to master [+0/-0/±17] https://git.io/JvFrn 2020-04-03 01:44:09 Not-8b5f [flying-squid] jvyden420 db2dc56 - Add some vanilla behavior 2020-04-03 01:44:11 Not-8b5f [flying-squid] jvyden420 a834750 - fix linting 2020-04-03 01:44:12 Not-8b5f [flying-squid] jvyden420 c47fdb7 - Basic tab complete functionality 2020-04-03 01:44:14 Not-8b5f [flying-squid] ... and 2 more commits. 2020-04-03 02:07:57 --> sean (6036a2de@S0106f0f24967d933.no.shawcable.net) a rejoint #mcdevs 2020-04-03 02:08:04 <-- sean (6036a2de@S0106f0f24967d933.no.shawcable.net) a quitté (Remote host closed the connection) 2020-04-03 04:50:00 <-- VADemon (~VADemon@2a01:4f8:212:2f1d:88::41) a quitté (Read error: Connection reset by peer) 2020-04-03 06:10:22 <-- mgrech (~mgrech@194-166-99-28.adsl.highway.telekom.at) a quitté (Ping timeout: 256 seconds) 2020-04-03 07:20:20 --> mgrech_ (~mgrech@194-166-99-28.adsl.highway.telekom.at) a rejoint #mcdevs 2020-04-03 07:28:14 <-- mgrech_ (~mgrech@194-166-99-28.adsl.highway.telekom.at) a quitté (Quit: mgrech_) 2020-04-03 09:43:11 MiniDigger you trying to port the archived old unreal wiki? 2020-04-03 09:43:14 MiniDigger thats nice 2020-04-03 09:49:25 <-- bildramer (~bildramer@p200300CF371C8D007F67408D92F33914.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2020-04-03 09:53:36 --> bildramer (~bildramer@p200300CF371C8D007F67408D92F33914.dip0.t-ipconnect.de) a rejoint #mcdevs 2020-04-03 10:35:25 <-- SpaceManiac (~SpaceMani@c-73-116-110-236.hsd1.ca.comcast.net) a quitté (Ping timeout: 250 seconds) 2020-04-03 10:40:21 --> SpaceManiac (~SpaceMani@2601:200:4400:103::10d1) a rejoint #mcdevs 2020-04-03 10:40:21 -- Mode #mcdevs [+v SpaceManiac] par ChanServ 2020-04-03 11:18:53 <-- tassu (~tassu@wikipedia/majavah) a quitté (Quit: The Lounge - https://thelounge.chat) 2020-04-03 11:19:05 --> tassu (~tassu@wikipedia/majavah) a rejoint #mcdevs 2020-04-03 11:19:11 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 250 seconds) 2020-04-03 11:19:48 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 11:20:33 <-- tassu (~tassu@wikipedia/majavah) a quitté (Client Quit) 2020-04-03 11:20:46 --> tassu (~tassu@wikipedia/majavah) a rejoint #mcdevs 2020-04-03 11:54:47 <-- tassu (~tassu@wikipedia/majavah) a quitté (Quit: The Lounge - https://thelounge.chat) 2020-04-03 11:55:02 --> tassu (~tassu@wikipedia/majavah) a rejoint #mcdevs 2020-04-03 11:55:13 <-- tassu (~tassu@wikipedia/majavah) a quitté (Remote host closed the connection) 2020-04-03 11:55:24 --> tassu (~tassu@wikipedia/majavah) a rejoint #mcdevs 2020-04-03 11:55:37 <-- tassu (~tassu@wikipedia/majavah) a quitté (Remote host closed the connection) 2020-04-03 11:55:49 --> tassu (~tassu@wikipedia/majavah) a rejoint #mcdevs 2020-04-03 12:08:41 <-- Defolos (~Defolos@fedora/defolos) a quitté (Ping timeout: 258 seconds) 2020-04-03 12:09:41 --> Defolos (~Defolos@fedora/defolos) a rejoint #mcdevs 2020-04-03 13:00:38 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 256 seconds) 2020-04-03 13:01:00 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 13:32:07 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 260 seconds) 2020-04-03 13:32:30 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 13:42:13 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 264 seconds) 2020-04-03 13:42:32 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 13:51:51 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 256 seconds) 2020-04-03 13:52:35 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 13:59:34 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 256 seconds) 2020-04-03 14:00:05 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 14:14:35 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 260 seconds) 2020-04-03 14:15:04 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 14:20:02 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 256 seconds) 2020-04-03 14:20:38 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 14:25:17 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 256 seconds) 2020-04-03 14:25:35 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 14:39:47 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 260 seconds) 2020-04-03 14:40:08 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 15:22:47 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 265 seconds) 2020-04-03 15:23:12 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 15:27:58 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 256 seconds) 2020-04-03 15:28:41 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 15:40:06 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 256 seconds) 2020-04-03 15:40:40 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 15:45:16 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 258 seconds) 2020-04-03 15:46:15 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 15:49:04 --> PolarizedIons6 (polarizedi@unaffiliated/polarizedions) a rejoint #mcdevs 2020-04-03 15:52:20 <-- PolarizedIons (polarizedi@unaffiliated/polarizedions) a quitté (Ping timeout: 256 seconds) 2020-04-03 15:52:21 -- PolarizedIons6 est maintenant connu sous le nom PolarizedIons 2020-04-03 15:57:34 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 240 seconds) 2020-04-03 15:58:14 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 16:21:14 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.6.6 - http://znc.in) 2020-04-03 16:25:30 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 16:29:55 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 260 seconds) 2020-04-03 16:30:45 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 16:32:53 <-- SpaceManiac (~SpaceMani@2601:200:4400:103::10d1) a quitté (Ping timeout: 272 seconds) 2020-04-03 16:35:59 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 260 seconds) 2020-04-03 16:36:46 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 16:37:06 --> SpaceManiac (~SpaceMani@c-73-116-110-236.hsd1.ca.comcast.net) a rejoint #mcdevs 2020-04-03 16:37:06 -- Mode #mcdevs [+v SpaceManiac] par ChanServ 2020-04-03 16:41:35 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 250 seconds) 2020-04-03 16:42:15 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 16:43:25 <-- niceplace (~nplace@86.106.136.94) a quitté (Ping timeout: 264 seconds) 2020-04-03 16:43:33 --> niceplaces (~nplace@82.221.128.157) a rejoint #mcdevs 2020-04-03 16:46:57 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 256 seconds) 2020-04-03 16:47:16 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 16:56:35 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 256 seconds) 2020-04-03 16:57:17 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 17:02:01 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 264 seconds) 2020-04-03 17:02:17 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 17:12:18 <-- caelunshun (~caelum@75-169-54-15.slkc.qwest.net) a quitté (Ping timeout: 256 seconds) 2020-04-03 17:14:23 --> caelunshun (~caelum@75-169-54-15.slkc.qwest.net) a rejoint #mcdevs 2020-04-03 17:17:01 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 264 seconds) 2020-04-03 17:17:19 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 17:21:52 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 256 seconds) 2020-04-03 17:22:19 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 17:26:54 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 240 seconds) 2020-04-03 17:27:23 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 17:32:19 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 265 seconds) 2020-04-03 17:32:49 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 17:42:54 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 256 seconds) 2020-04-03 17:43:24 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 17:59:37 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 264 seconds) 2020-04-03 17:59:52 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 18:04:14 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 240 seconds) 2020-04-03 18:05:25 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 18:10:10 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 258 seconds) 2020-04-03 18:10:54 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 18:15:46 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 256 seconds) 2020-04-03 18:16:24 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 18:26:32 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 256 seconds) 2020-04-03 18:27:28 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 18:31:54 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 240 seconds) 2020-04-03 18:32:24 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 18:41:50 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 256 seconds) 2020-04-03 18:42:29 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 18:47:30 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 256 seconds) 2020-04-03 18:47:57 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 18:57:13 <-- uis (~uis@uigors.tk) a quitté (Quit: ZNC 1.6.6 - http://znc.in) 2020-04-03 18:57:30 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 19:02:31 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 260 seconds) 2020-04-03 19:03:00 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 19:07:37 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 250 seconds) 2020-04-03 19:08:27 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 19:17:51 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 265 seconds) 2020-04-03 19:19:03 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 19:23:52 --> seanwm (6036a2de@S0106f0f24967d933.no.shawcable.net) a rejoint #mcdevs 2020-04-03 19:28:27 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 256 seconds) 2020-04-03 19:28:59 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 19:29:28 <-- seanwm (6036a2de@S0106f0f24967d933.no.shawcable.net) a quitté (Remote host closed the connection) 2020-04-03 19:33:58 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 256 seconds) 2020-04-03 19:34:29 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 19:39:04 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 256 seconds) 2020-04-03 20:18:45 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 20:23:25 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 265 seconds) 2020-04-03 20:24:07 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 20:28:34 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 240 seconds) 2020-04-03 20:29:05 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 20:33:49 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 264 seconds) 2020-04-03 20:34:07 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 20:38:34 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 240 seconds) 2020-04-03 20:39:37 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 20:44:22 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 265 seconds) 2020-04-03 20:44:39 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 20:49:23 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 260 seconds) 2020-04-03 20:50:09 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 20:54:59 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 260 seconds) 2020-04-03 20:55:38 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 21:00:40 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 256 seconds) 2020-04-03 21:01:11 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 21:10:27 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 256 seconds) 2020-04-03 21:11:10 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 21:15:49 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 264 seconds) 2020-04-03 21:16:40 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 21:25:21 tktech Yup. 2020-04-03 21:31:25 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 264 seconds) 2020-04-03 21:31:42 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 21:36:15 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 250 seconds) 2020-04-03 21:36:41 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 21:41:37 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 256 seconds) 2020-04-03 21:42:40 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 21:52:48 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 256 seconds) 2020-04-03 21:53:40 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 21:58:24 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 256 seconds) 2020-04-03 21:59:15 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 22:04:04 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 256 seconds) 2020-04-03 22:04:43 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 22:07:49 <-- caelunshun (~caelum@75-169-54-15.slkc.qwest.net) a quitté (Ping timeout: 265 seconds) 2020-04-03 22:19:25 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 264 seconds) 2020-04-03 22:19:43 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 22:24:42 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 256 seconds) 2020-04-03 22:25:14 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 22:29:59 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 250 seconds) 2020-04-03 22:30:02 --> caelunshun (~caelum@75-169-54-15.slkc.qwest.net) a rejoint #mcdevs 2020-04-03 22:30:45 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 22:43:43 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 260 seconds) 2020-04-03 22:44:15 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 22:48:54 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 256 seconds) 2020-04-03 22:49:47 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 23:09:51 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 265 seconds) 2020-04-03 23:10:47 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 23:15:47 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 260 seconds) 2020-04-03 23:16:52 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 23:21:46 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 265 seconds) 2020-04-03 23:22:22 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 23:27:05 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 265 seconds) 2020-04-03 23:27:47 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 23:32:34 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 265 seconds) 2020-04-03 23:32:48 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 23:42:20 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 256 seconds) 2020-04-03 23:42:52 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-03 23:59:01 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 264 seconds) 2020-04-03 23:59:23 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 00:08:58 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 256 seconds) 2020-04-04 00:09:24 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 00:16:20 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 256 seconds) 2020-04-04 00:16:53 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 00:21:14 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 240 seconds) 2020-04-04 00:22:22 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 00:27:32 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 260 seconds) 2020-04-04 00:27:55 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 00:38:03 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 260 seconds) 2020-04-04 00:38:27 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 00:48:32 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 260 seconds) 2020-04-04 00:48:57 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 00:58:36 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 265 seconds) 2020-04-04 00:58:57 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 01:08:16 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 265 seconds) 2020-04-04 01:08:57 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 01:11:06 Not-8b5f [minecraft-data] rom1504 pushed 2 commits to master [+2/-0/±4] https://git.io/JvbCg 2020-04-04 01:11:08 Not-8b5f [minecraft-data] sbh1311 995b6fe - updated to 20w14a 2020-04-04 01:11:09 Not-8b5f [minecraft-data] rom1504 2ffa9be - Merge pull request #270 from sbh1311/master updated to 20w14a 2020-04-04 01:14:05 Not-8b5f [mineflayer] rom1504 pushed 1 commit to master [+0/-0/±1] https://git.io/JvbCV 2020-04-04 01:14:06 Not-8b5f [mineflayer] 1by 466cb81 - convert scoreboard.js to an ES6 class (#933) * convert scoreboard.js to an ES6 class * Update scoreboard.js * Update scoreboard.js * Update scoreboard.js * Update scoreboard.js * Update scoreboard.js * Update scoreboard.js 2020-04-04 01:20:50 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 265 seconds) 2020-04-04 01:21:27 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 01:26:27 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 260 seconds) 2020-04-04 01:26:57 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 01:31:42 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 260 seconds) 2020-04-04 01:32:27 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 01:39:51 --> jcdickinson (~me@2604:4080:11cd:81c0:5d4c:21e2:4c8a:92a9) a rejoint #mcdevs 2020-04-04 01:44:02 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 265 seconds) 2020-04-04 01:45:02 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 01:49:34 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 240 seconds) 2020-04-04 01:50:32 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 01:55:38 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 265 seconds) 2020-04-04 01:56:02 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 02:00:34 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 240 seconds) 2020-04-04 02:01:32 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 02:06:42 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 260 seconds) 2020-04-04 02:07:02 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 02:11:57 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 260 seconds) 2020-04-04 02:12:32 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 02:22:13 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 265 seconds) 2020-04-04 02:22:30 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 02:27:01 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 250 seconds) 2020-04-04 02:28:01 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 02:37:25 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 256 seconds) 2020-04-04 02:38:03 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 02:47:55 --> VADemon (~VADemon@2a01:4f8:212:2f1d:88::41) a rejoint #mcdevs 2020-04-04 02:51:08 <-- Fenhl (sid30770@gateway/web/irccloud.com/x-jxgurzxutsagorjw) a quitté (Ping timeout: 256 seconds) 2020-04-04 02:52:35 --> Fenhl (sid30770@gateway/web/irccloud.com/x-tgeeaglgjkxdfpky) a rejoint #mcdevs 2020-04-04 02:52:35 -- Mode #mcdevs [+v Fenhl] par ChanServ 2020-04-04 03:01:14 <-- yawkat (~yawkat@cats.coffee) a quitté (Ping timeout: 256 seconds) 2020-04-04 03:07:29 <-- Fenhl (sid30770@gateway/web/irccloud.com/x-tgeeaglgjkxdfpky) a quitté (Ping timeout: 272 seconds) 2020-04-04 03:10:25 --> Fenhl (sid30770@gateway/web/irccloud.com/x-srlcpaiywthedwxy) a rejoint #mcdevs 2020-04-04 03:10:25 -- Mode #mcdevs [+v Fenhl] par ChanServ 2020-04-04 03:11:35 --> yawkat (~yawkat@cats.coffee) a rejoint #mcdevs 2020-04-04 03:16:22 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 265 seconds) 2020-04-04 03:17:07 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 03:31:49 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 265 seconds) 2020-04-04 03:32:08 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 03:49:47 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 250 seconds) 2020-04-04 03:50:43 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 03:55:49 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 265 seconds) 2020-04-04 03:56:12 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 03:56:35 <-- VADemon (~VADemon@2a01:4f8:212:2f1d:88::41) a quitté (Quit: left4dead) 2020-04-04 04:03:22 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 260 seconds) 2020-04-04 04:03:43 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 04:22:16 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 256 seconds) 2020-04-04 04:22:42 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 04:33:07 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 260 seconds) 2020-04-04 04:33:42 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 04:40:34 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 240 seconds) 2020-04-04 04:41:12 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 04:45:34 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 240 seconds) 2020-04-04 04:46:45 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 04:51:53 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 265 seconds) 2020-04-04 04:52:15 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 04:57:12 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 265 seconds) 2020-04-04 04:57:47 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 05:09:27 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 265 seconds) 2020-04-04 05:09:47 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 05:28:18 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 265 seconds) 2020-04-04 05:28:51 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 06:01:29 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 265 seconds) 2020-04-04 06:01:54 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 07:38:09 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 265 seconds) 2020-04-04 07:38:29 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 07:42:54 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 240 seconds) 2020-04-04 07:43:59 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 08:03:43 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 250 seconds) 2020-04-04 08:04:27 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 08:13:53 <-- dav1d (~dav1d@volt/developer/dav1d) a quitté (Quit: nothing to see) 2020-04-04 08:14:29 --> dav1d (~dav1d@volt/developer/dav1d) a rejoint #mcdevs 2020-04-04 08:26:10 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 265 seconds) 2020-04-04 08:26:30 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 08:45:15 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 260 seconds) 2020-04-04 08:45:32 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 08:50:53 --> niceplace (~nplace@209.58.170.166) a rejoint #mcdevs 2020-04-04 08:51:37 <-- niceplaces (~nplace@82.221.128.157) a quitté (Ping timeout: 265 seconds) 2020-04-04 09:02:02 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 260 seconds) 2020-04-04 09:02:32 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 09:11:45 --> Me4502 (~quassel@unaffiliated/me4502) a rejoint #mcdevs 2020-04-04 09:21:49 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 264 seconds) 2020-04-04 09:22:07 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 09:22:15 <-- Me4502 (~quassel@unaffiliated/me4502) a quitté (Ping timeout: 265 seconds) 2020-04-04 09:33:38 --> Me4502 (~quassel@unaffiliated/me4502) a rejoint #mcdevs 2020-04-04 09:36:15 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 265 seconds) 2020-04-04 09:36:36 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 09:41:37 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 264 seconds) 2020-04-04 09:42:06 --> uis (~uis@uigors.tk) a rejoint #mcdevs 2020-04-04 09:51:49 <-- uis (~uis@uigors.tk) a quitté (Ping timeout: 264 seconds)