2022-08-04 05:24:50 frying-pan im actually not manually closing the connection server-side right now (although i did try it and it didnt seem to change anything), but i am calling flush() after writing the pong packet 2022-08-04 05:27:50 pokechu22 https://wiki.vg/Debugging might help a bit - maybe you're sending something that's not being parsed correctly? 2022-08-04 05:28:07 frying-pan would the client close the connection if the payload in the ping response doesnt match the data it sent in the ping request? im not able to read 64-bit integers from a stream so ive been reading them as 2 32-bit integers but maybe im sending them back backwards or something 2022-08-04 05:30:14 pokechu22 I think the client always closes the connection when it receives the pong, but maybe if you send the wrong 64-bit value it shows as no connection? 2022-08-04 05:32:44 frying-pan this is pretty much what im doing right now: a = input.readInt32(); b = input.readInt32(); output.writeInt32(a); output.writeInt32(b); where input is the incoming stream and output is the outgoing stream ofc 2022-08-04 05:33:45 frying-pan it reading as signed 32-bit ints shouldnt matter if its just writing it back to the to stream again without actually uisng the number for anything, right? 2022-08-04 05:37:09 pokechu22 That shouldn't matter, but if you want to really be sure you could read 8 bytes and then write 8 bytes 2022-08-04 09:34:10 <-- RMHeuer (~RMHeuer@67-220-4-12.fttp.usinternet.com) a quitté (Ping timeout: 252 seconds) 2022-08-04 09:40:27 <-- dexter0 (~dexter0@c-69-181-126-161.hsd1.ca.comcast.net) a quitté (Ping timeout: 245 seconds) 2022-08-04 09:40:53 --> dexter0 (~dexter0@c-69-181-126-161.hsd1.ca.comcast.net) a rejoint #mcdevs 2022-08-04 09:42:32 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 245 seconds) 2022-08-04 09:43:28 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-04 10:28:33 <-- Techcable (~Techcable@user/Techcable) a quitté (Remote host closed the connection) 2022-08-04 10:30:06 --> Techcable (~Techcable@user/Techcable) a rejoint #mcdevs 2022-08-04 10:30:56 --> Skylandia (~Skylandia@125-237-205-161-adsl.sparkbb.co.nz) a rejoint #mcdevs 2022-08-04 10:31:04 <-- Skylandia (~Skylandia@125-237-205-161-adsl.sparkbb.co.nz) a quitté (Client Quit) 2022-08-04 10:31:50 --> Skylandia (~Skylandia@125-237-205-161-adsl.sparkbb.co.nz) a rejoint #mcdevs 2022-08-04 10:33:16 <-- Skylandia (~Skylandia@125-237-205-161-adsl.sparkbb.co.nz) a quitté (Client Quit) 2022-08-04 11:00:15 <-- mat[m] (~matmatdoe@2001:470:69fc:105::1:f7b1) a quitté (Quit: You have been kicked for being idle) 2022-08-04 11:13:02 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 240 seconds) 2022-08-04 11:29:10 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-04 11:38:47 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 252 seconds) 2022-08-04 12:18:58 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 268 seconds) 2022-08-04 12:19:56 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-04 13:10:46 <-- frying-pan (~frying-pa@131.128.73.84) a quitté (Quit: Konversation terminated!) 2022-08-04 15:05:02 Not-15ab [McUpdates] Minecraft snapshot 1.19.2-rc1 has just been published to the launcher! 2022-08-04 15:05:06 Not-15ab [McUpdates] Data generated by 1.19.2-rc1: https://apimon.de/mcdata/1.19.2-rc1/ 2022-08-04 15:13:20 Not-15ab [Burger] New data now avaliable for 1.19.2-rc1: 2022-08-04 15:13:21 Not-15ab [Burger] Diff from 1.19.1: https://pokechu22.github.io/Burger/diff_1.19.1_1.19.2-rc1.html (https://pokechu22.github.io/Burger/diff_1.19.1_1.19.2-rc1.json) 2022-08-04 15:13:23 Not-15ab [Burger] Full data: https://pokechu22.github.io/Burger/1.19.2-rc1.html (https://pokechu22.github.io/Burger/1.19.2-rc1.json) 2022-08-04 15:48:01 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 268 seconds) 2022-08-04 21:12:39 --> RMHeuer (~RMHeuer@67-220-4-12.fttp.usinternet.com) a rejoint #mcdevs 2022-08-04 21:14:09 --> frying-pan (~frying-pa@131.128.73.84) a rejoint #mcdevs 2022-08-04 21:25:02 frying-pan yesterday i asked about my troubles with getting my server to ping correctly and was directed to the Debugging page. i suspect that the reason the client shows "no connection" is that the payload of the Ping Response that im sending back doesnt match the one the client sent in Ping Request. my problem now is that although i can see what packets the client is sending and getting, i cant see the data inside them to verify if this is the issue. i know 2022-08-04 21:25:04 frying-pan the wiki page says it doesnt, but im not sure what to do if i cant see what the client is getting 2022-08-04 21:26:51 frying-pan i also did try just reading 8 bytes from the incoming packet and writing them right back to the outgoing packet but that did not fix the problem 2022-08-04 21:29:44 pokechu22 https://www.wireshark.org/ might be helpful at this point 2022-08-04 22:27:24 <-- RMHeuer (~RMHeuer@67-220-4-12.fttp.usinternet.com) a quitté (Quit: Client closed) 2022-08-04 22:53:20 frying-pan well i feel stupid now, i wasnt writing the length of the packet so it just didnt read the packet correctly :| 2022-08-04 23:03:14 pokechu22 Ah, I figured it could have been something like that, but I didn't think of that specific mistake 2022-08-04 23:05:43 frying-pan moving "better system of writing packets to be sent" higher in my priorities so that doesnt happen again lol 2022-08-04 23:32:41 <-- frying-pan (~frying-pa@131.128.73.84) a quitté (Ping timeout: 252 seconds) 2022-08-04 23:52:09 --> frying-pan (~frying-pa@131.128.73.84) a rejoint #mcdevs 2022-08-04 23:52:53 <-- frying-pan (~frying-pa@131.128.73.84) a quitté (Client Quit) 2022-08-05 01:37:32 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-05 07:32:38 --> Guest96 (~Guest96@S0106a0ff7035ee5f.vs.shawcable.net) a rejoint #mcdevs 2022-08-05 07:41:15 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-05 07:41:46 <-- Guest96 (~Guest96@S0106a0ff7035ee5f.vs.shawcable.net) a quitté (Quit: Connection closed) 2022-08-05 11:10:52 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 245 seconds) 2022-08-05 11:15:02 Not-15ab [McUpdates] Minecraft snapshot 1.19.2-rc2 has just been published to the launcher! 2022-08-05 11:15:04 Not-15ab [McUpdates] Data generated by 1.19.2-rc2: https://apimon.de/mcdata/1.19.2-rc2/ 2022-08-05 11:18:57 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-05 11:23:14 Not-15ab [Burger] New data now avaliable for 1.19.2-rc2: 2022-08-05 11:23:15 Not-15ab [Burger] Diff from 1.19.2-rc1: https://pokechu22.github.io/Burger/diff_1.19.2-rc1_1.19.2-rc2.html (https://pokechu22.github.io/Burger/diff_1.19.2-rc1_1.19.2-rc2.json) 2022-08-05 11:23:17 Not-15ab [Burger] Full data: https://pokechu22.github.io/Burger/1.19.2-rc2.html (https://pokechu22.github.io/Burger/1.19.2-rc2.json) 2022-08-05 11:38:48 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 268 seconds) 2022-08-05 16:05:02 Not-15ab [McUpdates] Minecraft release 1.19.2 has just been published to the launcher! 2022-08-05 16:05:04 Not-15ab [McUpdates] Data generated by 1.19.2: https://apimon.de/mcdata/1.19.2/ 2022-08-05 16:13:14 Not-15ab [Burger] New data now avaliable for 1.19.2: 2022-08-05 16:13:15 Not-15ab [Burger] Diff from 1.19.2-rc2: https://pokechu22.github.io/Burger/diff_1.19.2-rc2_1.19.2.html (https://pokechu22.github.io/Burger/diff_1.19.2-rc2_1.19.2.json) 2022-08-05 16:13:17 Not-15ab [Burger] Full data: https://pokechu22.github.io/Burger/1.19.2.html (https://pokechu22.github.io/Burger/1.19.2.json) 2022-08-05 17:49:45 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 252 seconds) 2022-08-05 20:19:09 pokechu22 https://pokechu22.github.io/Burger/diff_1.19.1_1.19.2.html 2022-08-05 20:22:15 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-05 20:25:19 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-05 21:15:37 bswartz Looks like 1.19.2 is just bugfixes related to secure chat 2022-08-05 21:16:00 bswartz Anyone know any rumors about 1.20? 2022-08-05 21:17:39 pokechu22 1.20 will be released after 1.19, probably 2022-08-05 21:18:44 bswartz Yeah but 1.19 has been out for a while, and not even a snap of 1.20 2022-08-05 21:19:31 bswartz What cool things are they adding? Are they going to light up the portals in the ancient cities? 2022-08-05 22:34:22 --> DaytonTheBuilder (~DaytonThe@213.236.23.16) a rejoint #mcdevs 2022-08-05 22:35:00 <-- DaytonTheBuilder (~DaytonThe@213.236.23.16) a quitté (Remote host closed the connection) 2022-08-05 22:35:24 --> DaytonTheBuilder (~DaytonThe@213.236.23.16) a rejoint #mcdevs 2022-08-05 22:36:52 <-- DaytonTheBuilder (~DaytonThe@213.236.23.16) a quitté (Remote host closed the connection) 2022-08-05 22:37:06 --> DaytonTheBuilder (~DaytonThe@213.236.23.16) a rejoint #mcdevs 2022-08-05 22:37:27 DaytonTheBuilder When will the minecraft protocol wiki be updated? 2022-08-05 22:37:30 <-- DaytonTheBuilder (~DaytonThe@213.236.23.16) a quitté (Remote host closed the connection) 2022-08-05 22:37:37 --> DaytonTheBuilder (~DaytonThe@213.236.23.16) a rejoint #mcdevs 2022-08-05 22:38:13 <-- DaytonTheBuilder (~DaytonThe@213.236.23.16) a quitté (Remote host closed the connection) 2022-08-06 00:07:54 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 268 seconds) 2022-08-06 00:51:03 --> greatgodoffire (~greatgodo@185.105.41.192) a rejoint #mcdevs 2022-08-06 00:53:59 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 252 seconds) 2022-08-06 01:01:08 greatgodoffire Hello. In the Encryption Response there is either the verify token encrypted with the server's public key or a salt and a message signature. How is the message signature being generated? Does the client sign the verify token? 2022-08-06 01:24:46 --> greatgodoffire_ (~greatgodo@185.105.41.125) a rejoint #mcdevs 2022-08-06 01:26:17 <-- greatgodoffire (~greatgodo@185.105.41.192) a quitté (Ping timeout: 245 seconds) 2022-08-06 01:42:56 <-- greatgodoffire_ (~greatgodo@185.105.41.125) a quitté (Quit: greatgodoffire_) 2022-08-06 01:43:08 --> greatgodoffire (~greatgodo@2a01:598:b1a2:bf9:bae3:ec91:fabc:a8f3) a rejoint #mcdevs 2022-08-06 04:39:27 bswartz greatgodoffire: Have you read the wiki? It explains that 2022-08-06 06:05:11 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-06 09:26:19 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-06 11:40:21 greatgodoffire bswartz: I did but I was unable to find anything about that in https://wiki.vg/Protocol and https://wiki.vg/Protocol_Encryption 2022-08-06 12:07:41 --> greatgodoffire_ (~greatgodo@185.105.41.125) a rejoint #mcdevs 2022-08-06 12:09:33 <-- greatgodoffire (~greatgodo@2a01:598:b1a2:bf9:bae3:ec91:fabc:a8f3) a quitté (Ping timeout: 268 seconds) 2022-08-06 12:11:42 --> greatgodoffire (~greatgodo@185.105.41.125) a rejoint #mcdevs 2022-08-06 12:11:48 <-- greatgodoffire_ (~greatgodo@185.105.41.125) a quitté (Client Quit) 2022-08-06 13:01:05 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 252 seconds) 2022-08-06 15:23:39 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 268 seconds) 2022-08-06 16:36:55 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-06 20:11:18 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-06 23:39:51 -- Bitflux est maintenant connu sous le nom Byteflux 2022-08-07 00:21:34 <-- greatgodoffire (~greatgodo@185.105.41.125) a quitté (Remote host closed the connection) 2022-08-07 01:56:13 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 252 seconds) 2022-08-07 02:06:44 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-07 03:14:19 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 252 seconds) 2022-08-07 03:18:19 --> bswartz_ (~bswartz_@136.56.144.91) a rejoint #mcdevs 2022-08-07 03:39:21 <-- bswartz_ (~bswartz_@136.56.144.91) a quitté (Quit: Quit) 2022-08-07 06:45:43 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 268 seconds) 2022-08-07 08:51:18 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-07 10:34:26 --> DaytonTheBuilder (~DaytonThe@213.236.23.16) a rejoint #mcdevs 2022-08-07 10:39:10 <-- DaytonTheBuilder (~DaytonThe@213.236.23.16) a quitté (Client Quit) 2022-08-07 15:16:47 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 268 seconds) 2022-08-07 17:02:08 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-07 18:32:35 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-07 19:20:21 <-- Schoentoon (~Schoentoo@static.51.16.201.138.clients.your-server.de) a quitté (Read error: Connection reset by peer) 2022-08-07 19:34:16 <-- Techcable (~Techcable@user/Techcable) a quitté (Remote host closed the connection) 2022-08-07 19:37:07 --> Techcable (~Techcable@user/Techcable) a rejoint #mcdevs 2022-08-07 19:41:15 --> Schoentoon (~Schoentoo@static.51.16.201.138.clients.your-server.de) a rejoint #mcdevs 2022-08-07 19:50:11 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 252 seconds) 2022-08-07 20:14:11 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-07 20:35:52 <-- Schoentoon (~Schoentoo@static.51.16.201.138.clients.your-server.de) a quitté (Ping timeout: 245 seconds) 2022-08-07 20:43:19 --> Schoentoon (~Schoentoo@static.51.16.201.138.clients.your-server.de) a rejoint #mcdevs 2022-08-07 21:08:26 <-- Schoentoon (~Schoentoo@static.51.16.201.138.clients.your-server.de) a quitté (Ping timeout: 268 seconds) 2022-08-07 21:24:16 --> Schoentoon (~Schoentoo@static.51.16.201.138.clients.your-server.de) a rejoint #mcdevs 2022-08-07 21:29:15 <-- Schoentoon (~Schoentoo@static.51.16.201.138.clients.your-server.de) a quitté (Ping timeout: 268 seconds) 2022-08-07 21:42:32 --> Schoentoon (~Schoentoo@static.51.16.201.138.clients.your-server.de) a rejoint #mcdevs 2022-08-07 22:59:26 <-- daswf852 (~daswf852@user/daswf852) a quitté (Ping timeout: 268 seconds) 2022-08-07 23:06:04 --> daswf852 (~daswf852@user/daswf852) a rejoint #mcdevs 2022-08-08 00:03:33 <-- Schoentoon (~Schoentoo@static.51.16.201.138.clients.your-server.de) a quitté (Ping timeout: 252 seconds) 2022-08-08 00:12:43 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 252 seconds) 2022-08-08 00:14:39 --> Schoentoon (~Schoentoo@schoentoon.com) a rejoint #mcdevs 2022-08-08 02:14:19 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 244 seconds) 2022-08-08 05:31:44 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-08 06:07:18 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-08 09:05:29 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 252 seconds) 2022-08-08 12:49:28 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 268 seconds) 2022-08-08 13:06:22 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-08 13:35:55 --> greatgodoffire (~greatgodo@185.105.41.25) a rejoint #mcdevs 2022-08-08 18:03:34 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-08 18:46:27 <-- greatgodoffire (~greatgodo@185.105.41.25) a quitté (Quit: greatgodoffire) 2022-08-08 21:03:52 <-- hub (~hub@user/hub) a quitté (Quit: -) 2022-08-08 21:04:20 --> hub (~hub@user/hub) a rejoint #mcdevs 2022-08-08 21:59:14 --> ponaskovas12321 (~PonasKova@88.223.146.171) a rejoint #mcdevs 2022-08-08 21:59:42 <-- ponaskovas12321 (~PonasKova@88.223.146.171) a quitté (Client Quit) 2022-08-08 22:53:27 --> Amaranth5 (~travis@59.ip-158-69-219.net) a rejoint #mcdevs 2022-08-08 22:54:59 --> TkTech4 (~TkTech@modemcable053.208-22-96.mc.videotron.ca) a rejoint #mcdevs 2022-08-08 22:55:01 --> rtm516_ (~rtm516@irc.rtm516.co.uk) a rejoint #mcdevs 2022-08-08 22:55:37 --> MiniDigger8 (~MiniDigge@user/minidigger) a rejoint #mcdevs 2022-08-08 22:55:42 --> bswartz1 (~bswartz@136.56.144.91) a rejoint #mcdevs 2022-08-08 22:55:47 --> daswf8524 (~daswf852@user/daswf852) a rejoint #mcdevs 2022-08-08 22:56:18 --> AgentK_ (~AgentK@user/agentk) a rejoint #mcdevs 2022-08-08 22:58:54 --> Thinkofname1 (~thinkthin@37.205.12.211) a rejoint #mcdevs 2022-08-08 22:59:21 --> dexter0_ (~dexter0@c-69-181-126-161.hsd1.ca.comcast.net) a rejoint #mcdevs 2022-08-08 23:01:01 --> Sainan (~Sainan@static.222.155.69.159.clients.your-server.de) a rejoint #mcdevs 2022-08-08 23:02:16 <-- daswf852 (~daswf852@user/daswf852) a quitté (*.net *.split) 2022-08-08 23:02:17 <-- Sainan- (~Sainan@static.222.155.69.159.clients.your-server.de) a quitté (*.net *.split) 2022-08-08 23:02:17 <-- Amaranth (~travis@59.ip-158-69-219.net) a quitté (*.net *.split) 2022-08-08 23:02:17 <-- AgentK (~AgentK@user/agentk) a quitté (*.net *.split) 2022-08-08 23:02:17 <-- MiniDigger (~MiniDigge@user/minidigger) a quitté (*.net *.split) 2022-08-08 23:02:17 <-- rtm516 (~rtm516@irc.rtm516.co.uk) a quitté (*.net *.split) 2022-08-08 23:02:17 <-- bswartz (~bswartz@user/bswartz) a quitté (*.net *.split) 2022-08-08 23:02:18 -- daswf8524 est maintenant connu sous le nom daswf852 2022-08-08 23:02:19 -- MiniDigger8 est maintenant connu sous le nom MiniDigger 2022-08-08 23:02:23 -- Amaranth5 est maintenant connu sous le nom Amaranth 2022-08-08 23:02:23 -- rtm516_ est maintenant connu sous le nom rtm516 2022-08-08 23:02:30 --> nickelpro (nickelpro@i.am.the.only.nickelp.ro) a rejoint #mcdevs 2022-08-08 23:03:28 --> Wanderer_ (~wanderer@user/wanderer) a rejoint #mcdevs 2022-08-08 23:04:03 --> anderson_ (~ande@user/anderson) a rejoint #mcdevs 2022-08-08 23:04:16 <-- TkTech (~TkTech@modemcable053.208-22-96.mc.videotron.ca) a quitté (Ping timeout: 240 seconds) 2022-08-08 23:04:16 -- TkTech4 est maintenant connu sous le nom TkTech 2022-08-08 23:06:17 <-- anderson (~ande@user/anderson) a quitté (Ping timeout: 240 seconds) 2022-08-08 23:06:17 <-- Thinkofname (~thinkthin@37.205.12.211) a quitté (Ping timeout: 240 seconds) 2022-08-08 23:06:17 <-- dexter0 (~dexter0@c-69-181-126-161.hsd1.ca.comcast.net) a quitté (Ping timeout: 240 seconds) 2022-08-08 23:06:18 <-- Wanderer (~wanderer@user/wanderer) a quitté (Ping timeout: 240 seconds) 2022-08-08 23:06:18 <-- nickelpro_ (~nickelpro@i.am.the.only.nickelp.ro) a quitté (Ping timeout: 240 seconds) 2022-08-08 23:06:20 -- anderson_ est maintenant connu sous le nom anderson 2022-08-09 00:01:14 -- irc : déconnecté du serveur 2022-08-09 00:01:33 --> rom1504 (rom1504@rom1504.fr) a rejoint #mcdevs 2022-08-09 00:01:33 -- 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/" 2022-08-09 00:01:33 -- Titre défini par TkTech le mer., 19 mai 2021 23:14:27 2022-08-09 00:01:33 -- Canal #mcdevs : 68 pseudos (1 op, 0 voice, 67 normaux) 2022-08-09 00:01:33 -- URL pour #mcdevs : https://wiki.vg 2022-08-09 00:02:07 -- Canal créé le mer., 19 mai 2021 16:40:13 2022-08-09 00:02:50 --> Geolykt (~Geolykt@94.46.93.245) a rejoint #mcdevs 2022-08-09 00:05:28 --> leha2 (~yaaic@94.198.180.24) a rejoint #mcdevs 2022-08-09 00:52:02 <-- leha2 (~yaaic@94.198.180.24) a quitté (Read error: Connection reset by peer) 2022-08-09 01:47:11 <-- bswartz1 (~bswartz@136.56.144.91) a quitté (Quit: Leaving.) 2022-08-09 01:47:20 --> bswartz (~bswartz@136.56.144.91) a rejoint #mcdevs 2022-08-09 01:47:20 <-- bswartz (~bswartz@136.56.144.91) a quitté (Changing host) 2022-08-09 01:47:20 --> bswartz (~bswartz@user/bswartz) a rejoint #mcdevs 2022-08-09 03:57:45 -- Wanderer_ est maintenant connu sous le nom wanderer 2022-08-09 04:16:47 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 268 seconds) 2022-08-09 04:56:46 --> Hafydd_ (jc@user/hafydd) a rejoint #mcdevs 2022-08-09 05:02:45 --> ptrc_ (~ptrc@ptrc.gay) a rejoint #mcdevs 2022-08-09 05:03:04 <-- anderson (~ande@user/anderson) a quitté (*.net *.split) 2022-08-09 05:03:05 <-- Hafydd (jc@owlchat.newnet.net) a quitté (*.net *.split) 2022-08-09 05:03:05 <-- ptrc (~ptrc@ptrc.gay) a quitté (*.net *.split) 2022-08-09 05:03:05 <-- ckie (~ckie@user/cookie) a quitté (*.net *.split) 2022-08-09 05:03:05 <-- xtexChooser[m] (~xtexchoos@2001:470:69fc:105::2:4501) a quitté (*.net *.split) 2022-08-09 05:03:34 -- ptrc_ est maintenant connu sous le nom ptrc 2022-08-09 05:05:33 --> anderson (~ande@user/anderson) a rejoint #mcdevs 2022-08-09 05:09:24 --> ckie (~ckie@user/cookie) a rejoint #mcdevs 2022-08-09 05:14:45 --> xtexChooser[m] (~xtexchoos@2001:470:69fc:105::2:4501) a rejoint #mcdevs 2022-08-09 08:09:36 <-- haykam_ (~haykam@user/haykam) a quitté (Remote host closed the connection) 2022-08-09 08:09:53 --> haykam (~haykam@user/haykam) a rejoint #mcdevs 2022-08-09 10:11:01 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 252 seconds) 2022-08-09 11:22:24 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-09 12:24:50 --> Dral (~Dral@85-147-167-138.cable.dynamic.v4.ziggo.nl) a rejoint #mcdevs 2022-08-09 13:08:58 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 268 seconds) 2022-08-09 13:41:47 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-09 14:02:08 <-- Dral (~Dral@85-147-167-138.cable.dynamic.v4.ziggo.nl) a quitté (Remote host closed the connection) 2022-08-09 16:01:49 --> Dral (~Dral@85.146.241.52) a rejoint #mcdevs 2022-08-09 16:01:53 Dral I'm working with the minecraft protocol at the moment, from https://wiki.vg/Protocol, and it seems like there are some packets missing which make all the packet ids after 0x13 wrong.. Anyone else was able to use these packets successfully, or should I update the wiki? 🤔 2022-08-09 16:03:31 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 268 seconds) 2022-08-09 16:44:24 <-- Dral (~Dral@85.146.241.52) a quitté (Remote host closed the connection) 2022-08-09 17:28:09 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-09 17:37:51 bswartz If you're seeing undocumented packets it's definitely a bug in your code 2022-08-09 17:38:18 bswartz The documentation is based on a thorough disassembly of the actual network code of the game 2022-08-09 18:05:00 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-09 19:35:03 <-- ptrc (~ptrc@ptrc.gay) a quitté (Remote host closed the connection) 2022-08-09 19:35:30 --> ptrc (~ptrc@ptrc.gay) a rejoint #mcdevs 2022-08-09 20:29:06 --> Rickardo (~Rickardo@pool-71-127-155-2.bltmmd.fios.verizon.net) a rejoint #mcdevs 2022-08-09 20:36:51 Rickardo Hello, I am writing a simple minecraft server in go (using this wonderful library https://github.com/Tnze/go-mc). I want to disconnect the user with an 0x17 disconnect packet as soon as authentication has succeeded and the state has switched to play. Upon sending the disconnect packet I get "Internal Exception: 2022-08-09 20:36:52 Rickardo io.netty.handler.coded.DecoderException: aa: Non [a-z0-9_.-] character in namespace of location: {"text":"Hello World!","color":"blue"}" It seems the client recieves the chat message but it doesnt want to decode it for whatever reason. 2022-08-09 20:38:44 Rickardo To test my sanity, I also looked at the connection between a client and a real mc server (using wireshark) and it sends the same json encoded chat (https://wiki.vg/Chat) message 2022-08-09 20:39:01 pokechu22 Does the packet ID that the real mc server is using match 0x17? 2022-08-09 20:40:17 pokechu22 I think the wiki might be documenting 1.19 instead of 1.19.2, and some packets have shifted: https://pokechu22.github.io/Burger/diff_1.19_1.19.1.html#packets:play_clientbound_17 makes me think you should be using 0x19 instead of 0x17 for 1.19.2 (n.b. no changes in https://pokechu22.github.io/Burger/diff_1.19.1_1.19.2.html) 2022-08-09 20:42:33 Rickardo Ah that makes sense, the disconnect packet with the real server is 0x13 19 11 7b 22 74 65 78 74 22 3a 22 52 65 61 73 6f 6e 22 7d, It says 19 but I thought that was some varint bullcrap. Ok thanks 2022-08-09 20:43:40 Rickardo It works! 2022-08-09 20:46:12 <-- Rickardo (~Rickardo@pool-71-127-155-2.bltmmd.fios.verizon.net) a quitté (Quit: Connection closed) 2022-08-09 20:46:31 --> Rickardo (~Rickardo@pool-71-127-155-2.bltmmd.fios.verizon.net) a rejoint #mcdevs 2022-08-09 20:46:37 <-- Rickardo (~Rickardo@pool-71-127-155-2.bltmmd.fios.verizon.net) a quitté (Client Quit) 2022-08-09 20:52:51 --> Dral (~Dral@85-147-167-138.cable.dynamic.v4.ziggo.nl) a rejoint #mcdevs 2022-08-09 22:07:33 <-- Dral (~Dral@85-147-167-138.cable.dynamic.v4.ziggo.nl) a quitté (Remote host closed the connection) 2022-08-10 04:03:02 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 255 seconds) 2022-08-10 04:50:49 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 252 seconds) 2022-08-10 06:19:21 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-10 07:38:45 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 252 seconds) 2022-08-10 14:30:49 --> Keuin (~Keuin@13.75.46.51) a rejoint #mcdevs 2022-08-10 14:52:18 <-- Keuin (~Keuin@13.75.46.51) a quitté (Quit: Leaving) 2022-08-10 16:14:28 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-10 17:03:52 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 268 seconds) 2022-08-10 17:56:01 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-10 18:08:44 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-10 18:53:01 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 268 seconds) 2022-08-10 19:13:48 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-11 01:02:42 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Quit: Lost terminal) 2022-08-11 07:30:21 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 244 seconds) 2022-08-11 09:10:57 <-- obw (~offbeatwi@platypus.offbeatwit.ch) a quitté (Quit: and at the end / you can't do it again) 2022-08-11 09:11:19 --> obw (~offbeatwi@2001:bc8:608:131::1) a rejoint #mcdevs 2022-08-11 13:00:34 --> daswf8525 (~daswf852@user/daswf852) a rejoint #mcdevs 2022-08-11 13:01:58 <-- daswf852 (~daswf852@user/daswf852) a quitté (Ping timeout: 240 seconds) 2022-08-11 13:02:39 -- daswf8525 est maintenant connu sous le nom daswf852 2022-08-11 16:47:47 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-11 17:12:06 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Quit: Leaving) 2022-08-11 19:33:17 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-11 20:10:08 <-- dexter0_ (~dexter0@c-69-181-126-161.hsd1.ca.comcast.net) a quitté (Ping timeout: 268 seconds) 2022-08-11 22:10:50 --> dexter0 (~dexter0@c-69-181-125-164.hsd1.ca.comcast.net) a rejoint #mcdevs 2022-08-11 22:53:07 <-- dexter0 (~dexter0@c-69-181-125-164.hsd1.ca.comcast.net) a quitté (Ping timeout: 252 seconds) 2022-08-11 23:02:53 --> dexter0 (~dexter0@c-69-181-125-164.hsd1.ca.comcast.net) a rejoint #mcdevs 2022-08-11 23:13:28 <-- Thinkofname1 (~thinkthin@37.205.12.211) a quitté (Quit: Bridge terminating on SIGTERM) 2022-08-11 23:15:14 --> Thinkofname (~thinkthin@37.205.12.211) a rejoint #mcdevs 2022-08-12 01:53:02 <-- sudden (~cat@user/sudden) a quitté (Ping timeout: 255 seconds) 2022-08-12 01:53:58 --> sudden (~cat@user/sudden) a rejoint #mcdevs 2022-08-12 08:58:07 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 252 seconds) 2022-08-12 11:19:17 <-- daswf852 (~daswf852@user/daswf852) a quitté (Ping timeout: 252 seconds) 2022-08-12 11:21:53 --> daswf852 (~daswf852@user/daswf852) a rejoint #mcdevs 2022-08-12 11:39:13 <-- MiniDigger (~MiniDigge@user/minidigger) a quitté (Quit: The Lounge - https://thelounge.chat) 2022-08-12 11:39:47 --> MiniDigger (~MiniDigge@user/minidigger) a rejoint #mcdevs 2022-08-12 12:10:46 <-- deltab (~deltab@user/deltab) a quitté (Ping timeout: 268 seconds) 2022-08-12 12:16:30 --> deltab (~deltab@user/deltab) a rejoint #mcdevs 2022-08-12 12:51:44 --> GoodClover (~GoodClove@adsl-5-198-10-93.karoo.kcom.com) a rejoint #mcdevs 2022-08-12 16:42:05 <-- GoodClover (~GoodClove@adsl-5-198-10-93.karoo.kcom.com) a quitté (Read error: Connection reset by peer) 2022-08-12 19:08:57 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-13 06:38:04 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 244 seconds) 2022-08-13 07:04:39 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-13 11:19:08 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 244 seconds) 2022-08-13 18:58:24 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-14 02:43:17 <-- deltab (~deltab@user/deltab) a quitté (Ping timeout: 268 seconds) 2022-08-14 02:53:24 --> deltab (~deltab@user/deltab) a rejoint #mcdevs 2022-08-14 05:33:05 --> RMHeuer (~RMHeuer@67-220-4-12.fttp.usinternet.com) a rejoint #mcdevs 2022-08-14 05:35:12 <-- RMHeuer (~RMHeuer@67-220-4-12.fttp.usinternet.com) a quitté (Client Quit) 2022-08-14 09:16:59 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 252 seconds) 2022-08-14 11:03:18 <-- MisterVector (~Vector@47.151.222.161) a quitté (Read error: Connection reset by peer) 2022-08-14 11:07:32 --> MisterVector (~Vector@47.151.222.161) a rejoint #mcdevs 2022-08-14 12:30:07 --> Not-af6d (~notifico@n.tkte.ch) a rejoint #mcdevs 2022-08-14 12:30:07 Not-af6d [PixLyzer data] Bixilon pushed 1 commit [+294/-0/±6] https://gitlab.bixilon.de/bixilon/pixlyzer-data/compare/bd8482a2d51666151883f796321042c005b4aec4...bb23397ad61589e90a61edcffebbe6410af90b45 2022-08-14 12:30:08 Not-af6d [PixLyzer data] Bixilon bb23397 - 1.19.2 2022-08-14 13:46:12 <-- deltab (~deltab@user/deltab) a quitté (Ping timeout: 268 seconds) 2022-08-14 13:55:32 --> deltab (~deltab@user/deltab) a rejoint #mcdevs 2022-08-14 17:27:49 --> TestingPlant (~TestingPl@gateway/tor-sasl/testingplant) a rejoint #mcdevs 2022-08-14 18:07:43 <-- TestingPlant (~TestingPl@gateway/tor-sasl/testingplant) a quitté (Ping timeout: 268 seconds) 2022-08-14 18:22:26 --> NoahvdAa (~NoahvdAa@user/noahvdaa) a rejoint #mcdevs 2022-08-14 18:25:36 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-14 18:48:33 --> TestingPlant (~TestingPl@gateway/tor-sasl/testingplant) a rejoint #mcdevs 2022-08-14 19:05:04 <-- TestingPlant (~TestingPl@gateway/tor-sasl/testingplant) a quitté (Ping timeout: 268 seconds) 2022-08-14 19:20:47 --> TestingPlant (~TestingPl@gateway/tor-sasl/testingplant) a rejoint #mcdevs 2022-08-14 19:44:54 <-- MisterVector (~Vector@47.151.222.161) a quitté 2022-08-14 19:51:32 --> MisterVector (~Vector@47.151.222.161) a rejoint #mcdevs 2022-08-14 19:56:20 <-- MisterVector (~Vector@47.151.222.161) a quitté (Client Quit) 2022-08-14 19:58:53 --> MisterVector (~Vector@47.151.222.161) a rejoint #mcdevs 2022-08-14 21:07:48 <-- MisterVector (~Vector@47.151.222.161) a quitté 2022-08-14 21:11:27 --> MisterVector (~Vector@47.151.222.161) a rejoint #mcdevs 2022-08-14 21:21:47 <-- MisterVector (~Vector@47.151.222.161) a quitté 2022-08-14 21:42:19 --> MisterVector (~Vector@47.151.222.161) a rejoint #mcdevs 2022-08-14 22:02:39 <-- MisterVector (~Vector@47.151.222.161) a quitté 2022-08-14 22:03:54 <-- TestingPlant (~TestingPl@gateway/tor-sasl/testingplant) a quitté (Ping timeout: 268 seconds) 2022-08-14 23:08:06 --> TestingPlant (~TestingPl@gateway/tor-sasl/testingplant) a rejoint #mcdevs 2022-08-15 00:21:14 <-- TestingPlant (~TestingPl@gateway/tor-sasl/testingplant) a quitté (Remote host closed the connection) 2022-08-15 00:22:08 --> TestingPlant (~TestingPl@gateway/tor-sasl/testingplant) a rejoint #mcdevs 2022-08-15 00:36:50 <-- TestingPlant (~TestingPl@gateway/tor-sasl/testingplant) a quitté (Ping timeout: 268 seconds) 2022-08-15 00:53:02 --> TestingPlant (~TestingPl@gateway/tor-sasl/testingplant) a rejoint #mcdevs 2022-08-15 04:51:50 <-- TestingPlant (~TestingPl@gateway/tor-sasl/testingplant) a quitté (Remote host closed the connection) 2022-08-15 04:52:32 --> TestingPlant (~TestingPl@gateway/tor-sasl/testingplant) a rejoint #mcdevs 2022-08-15 05:22:02 <-- TestingPlant (~TestingPl@gateway/tor-sasl/testingplant) a quitté (Remote host closed the connection) 2022-08-15 06:02:50 --> tny (~tny@accela.tny.town) a rejoint #mcdevs 2022-08-15 07:02:02 <-- camotoy (~camotoy@2600:1700:5531:3d80:ff:60ff:fe24:68ed) a quitté (*.net *.split) 2022-08-15 07:02:03 <-- ecx (~user@user/ecx) a quitté (*.net *.split) 2022-08-15 07:02:03 <-- bigfoot547 (bigfoot@user/bigfoot547) a quitté (*.net *.split) 2022-08-15 07:02:34 --> ecx (~user@2604:180:0:39a::be86) a rejoint #mcdevs 2022-08-15 07:02:38 --> bigfoot547 (bigfoot@user/bigfoot547) a rejoint #mcdevs 2022-08-15 07:02:40 <-- ecx (~user@2604:180:0:39a::be86) a quitté (Signing in (ecx)) 2022-08-15 07:02:40 --> ecx (~user@user/ecx) a rejoint #mcdevs 2022-08-15 07:02:51 --> camotoy (~camotoy@2600:1700:5531:3d80:ff:60ff:fe24:68ed) a rejoint #mcdevs 2022-08-15 07:17:00 <-- ejm (techkid6@borealis.voxelstorm.com) a quitté (*.net *.split) 2022-08-15 07:17:21 --> ejm (techkid6@borealis.voxelstorm.com) a rejoint #mcdevs 2022-08-15 07:17:54 -- ejm est maintenant connu sous le nom Guest925 2022-08-15 07:39:54 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-15 07:48:28 --> MisterVector (~Vector@47.151.222.161) a rejoint #mcdevs 2022-08-15 07:49:23 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 255 seconds) 2022-08-15 09:19:50 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 268 seconds) 2022-08-15 13:56:17 --> rob9315 (~rob9315@p5dccd7a1.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-15 16:44:50 <-- rob9315 (~rob9315@p5dccd7a1.dip0.t-ipconnect.de) a quitté (Ping timeout: 248 seconds) 2022-08-15 16:57:34 --> rob9315 (~rob9315@p5dccd7a1.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-15 18:12:01 <-- deltab (~deltab@user/deltab) a quitté (Ping timeout: 268 seconds) 2022-08-15 18:23:17 --> deltab (~deltab@user/deltab) a rejoint #mcdevs 2022-08-15 19:12:12 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-15 21:04:01 <-- hub (~hub@user/hub) a quitté (Quit: -) 2022-08-15 21:04:34 --> hub (~hub@user/hub) a rejoint #mcdevs 2022-08-15 22:40:37 <-- rob9315 (~rob9315@p5dccd7a1.dip0.t-ipconnect.de) a quitté (Ping timeout: 252 seconds) 2022-08-15 22:51:50 --> rob9315 (~rob9315@p5dccd7a1.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-16 00:51:18 <-- rob9315 (~rob9315@p5dccd7a1.dip0.t-ipconnect.de) a quitté (Quit: leaving) 2022-08-16 05:31:46 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 248 seconds) 2022-08-16 06:05:59 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-16 07:42:02 <-- MisterVector (~Vector@47.151.222.161) a quitté 2022-08-16 07:45:15 <-- dexter0 (~dexter0@c-69-181-125-164.hsd1.ca.comcast.net) a quitté (Ping timeout: 268 seconds) 2022-08-16 07:45:31 --> dexter0 (~dexter0@c-69-181-125-164.hsd1.ca.comcast.net) a rejoint #mcdevs 2022-08-16 10:03:51 --> MisterVector (~Vector@47.151.222.161) a rejoint #mcdevs 2022-08-16 10:31:30 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 248 seconds) 2022-08-16 13:39:52 <-- Techcable (~Techcable@user/Techcable) a quitté (Remote host closed the connection) 2022-08-16 13:41:41 --> Techcable (~Techcable@user/Techcable) a rejoint #mcdevs 2022-08-16 14:58:23 <-- ckie (~ckie@user/cookie) a quitté (Quit: *poof*) 2022-08-16 15:00:14 --> ckie (~ckie@user/cookie) a rejoint #mcdevs 2022-08-16 15:45:20 <-- sudden (~cat@user/sudden) a quitté (Read error: Connection reset by peer) 2022-08-16 20:36:31 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-17 01:05:06 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 248 seconds) 2022-08-17 01:35:49 <-- ptrc (~ptrc@ptrc.gay) a quitté (Remote host closed the connection) 2022-08-17 01:36:16 --> ptrc (~ptrc@ptrc.gay) a rejoint #mcdevs 2022-08-17 01:37:03 --> Guest60 (~Guest60@62-99-152-190.static.upcbusiness.at) a rejoint #mcdevs 2022-08-17 01:41:07 <-- Guest60 (~Guest60@62-99-152-190.static.upcbusiness.at) a quitté (Client Quit) 2022-08-17 02:18:08 --> sudden (~cat@user/sudden) a rejoint #mcdevs 2022-08-17 02:57:44 <-- MisterVector (~Vector@47.151.222.161) a quitté 2022-08-17 03:50:49 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-17 08:12:49 <-- ptrc (~ptrc@ptrc.gay) a quitté #mcdevs 2022-08-17 09:45:06 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 248 seconds) 2022-08-17 17:39:30 --> Kizuma (~Kizuma@213-47-252-16.cable.dynamic.surfer.at) a rejoint #mcdevs 2022-08-17 18:05:22 --> MisterVector (~Vector@47.151.222.161) a rejoint #mcdevs 2022-08-17 18:32:09 <-- MisterVector (~Vector@47.151.222.161) a quitté 2022-08-17 18:34:17 --> MisterVector (~Vector@47.151.222.161) a rejoint #mcdevs 2022-08-17 18:36:36 <-- Kizuma (~Kizuma@213-47-252-16.cable.dynamic.surfer.at) a quitté (Quit: Connection closed) 2022-08-17 21:08:45 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-18 02:13:48 <-- MisterVector (~Vector@47.151.222.161) a quitté 2022-08-18 05:26:58 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 248 seconds) 2022-08-18 07:03:28 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-18 08:19:06 --> clonejo1 (~clonejo@shakik3.shakik.de) a rejoint #mcdevs 2022-08-18 08:21:10 <-- clonejo (~clonejo@shakik3.shakik.de) a quitté (Ping timeout: 244 seconds) 2022-08-18 09:36:07 <-- stack0 (~StackDoub@45-29-51-69.lightspeed.cicril.sbcglobal.net) a quitté (Ping timeout: 268 seconds) 2022-08-18 09:36:09 --> stack08 (~StackDoub@45-29-51-69.lightspeed.cicril.sbcglobal.net) a rejoint #mcdevs 2022-08-18 10:34:52 --> MisterVector (~Vector@47.151.222.161) a rejoint #mcdevs 2022-08-18 10:50:10 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 248 seconds) 2022-08-18 10:52:10 --> xtexChooser (~xtex@2409:8a55:c212:3af0::2) a rejoint #mcdevs 2022-08-18 11:23:22 <-- xtexChooser (~xtex@2409:8a55:c212:3af0::2) a quitté (Quit: Konversation terminated!) 2022-08-18 11:46:34 <-- Disconsented (~quassel@irc.disconsented.com) a quitté (Quit: http://quassel-irc.org - Chat comfortably. Anywhere.) 2022-08-18 13:08:26 --> Disconsented (~quassel@irc.disconsented.com) a rejoint #mcdevs 2022-08-18 18:38:45 <-- electronicboy (~electroni@atlas.valaria.pw) a quitté (Ping timeout: 268 seconds) 2022-08-18 18:54:32 --> electronicboy (~electroni@atlas.valaria.pw) a rejoint #mcdevs 2022-08-18 20:04:00 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-18 21:16:56 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-19 03:07:35 --> Guest5745 (~L@cpe-66-66-1-222.rochester.res.rr.com) a rejoint #mcdevs 2022-08-19 05:53:01 <-- Guest5745 (~L@cpe-66-66-1-222.rochester.res.rr.com) a quitté (Quit: Connection closed) 2022-08-19 08:50:31 <-- camotoy (~camotoy@2600:1700:5531:3d80:ff:60ff:fe24:68ed) a quitté (Ping timeout: 268 seconds) 2022-08-19 08:56:02 --> camotoy (~camotoy@2600:1700:5531:3d80:ff:60ff:fe24:68ed) a rejoint #mcdevs 2022-08-19 09:13:38 <-- camotoy (~camotoy@2600:1700:5531:3d80:ff:60ff:fe24:68ed) a quitté (Ping timeout: 248 seconds) 2022-08-19 09:13:57 --> camotoy (~camotoy@104-4-111-192.lightspeed.bcvloh.sbcglobal.net) a rejoint #mcdevs 2022-08-19 10:48:02 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 248 seconds) 2022-08-19 10:52:49 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 256 seconds) 2022-08-19 13:05:42 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-19 14:13:55 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 248 seconds) 2022-08-19 14:42:28 --> xtexChooser (~xtex@2409:8a55:c212:3af0::2) a rejoint #mcdevs 2022-08-19 14:43:03 <-- xtexChooser (~xtex@2409:8a55:c212:3af0::2) a quitté (Client Quit) 2022-08-19 15:01:20 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-19 18:29:33 <-- sudden (~cat@user/sudden) a quitté (Ping timeout: 256 seconds) 2022-08-19 18:47:55 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 268 seconds) 2022-08-19 22:33:16 --> sudden (~cat@user/sudden) a rejoint #mcdevs 2022-08-19 22:33:19 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-20 00:07:17 --> ImNootingHere (~Thunderbi@ip-175.net-80-236-96.joinville.rev.numericable.fr) a rejoint #mcdevs 2022-08-20 00:07:23 <-- ImNootingHere (~Thunderbi@ip-175.net-80-236-96.joinville.rev.numericable.fr) a quitté #mcdevs 2022-08-20 00:07:33 --> ImNootingHere (~Thunderbi@ip-175.net-80-236-96.joinville.rev.numericable.fr) a rejoint #mcdevs 2022-08-20 00:20:56 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-20 01:14:13 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 252 seconds) 2022-08-20 01:16:12 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-20 01:20:56 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 256 seconds) 2022-08-20 02:35:10 <-- ImNootingHere (~Thunderbi@ip-175.net-80-236-96.joinville.rev.numericable.fr) a quitté (Quit: ImNootingHere) 2022-08-20 11:54:42 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 248 seconds) 2022-08-20 17:35:14 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-20 19:48:16 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 268 seconds) 2022-08-20 20:27:07 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-20 22:14:01 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-20 22:41:14 --> C4K3 (~C4K3@fen.c4k3.net) a rejoint #mcdevs 2022-08-21 00:42:42 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 248 seconds) 2022-08-21 03:33:07 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-21 10:13:22 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 248 seconds) 2022-08-21 12:30:51 --> ImNootingHere (~Thunderbi@ip-175.net-80-236-96.joinville.rev.numericable.fr) a rejoint #mcdevs 2022-08-21 13:04:39 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 244 seconds) 2022-08-21 13:15:27 <-- ImNootingHere (~Thunderbi@ip-175.net-80-236-96.joinville.rev.numericable.fr) a quitté (Quit: ImNootingHere) 2022-08-21 15:37:08 --> TestingPlant (~TestingPl@gateway/tor-sasl/testingplant) a rejoint #mcdevs 2022-08-21 15:42:50 <-- TestingPlant (~TestingPl@gateway/tor-sasl/testingplant) a quitté (Ping timeout: 268 seconds) 2022-08-21 15:58:47 --> TestingPlant (~TestingPl@gateway/tor-sasl/testingplant) a rejoint #mcdevs 2022-08-21 16:30:47 <-- TestingPlant (~TestingPl@gateway/tor-sasl/testingplant) a quitté (Remote host closed the connection) 2022-08-21 16:31:35 --> TestingPlant (~TestingPl@gateway/tor-sasl/testingplant) a rejoint #mcdevs 2022-08-21 16:32:46 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-21 16:53:28 <-- TestingPlant (~TestingPl@gateway/tor-sasl/testingplant) a quitté (Remote host closed the connection) 2022-08-21 16:54:00 --> TestingPlant (~TestingPl@gateway/tor-sasl/testingplant) a rejoint #mcdevs 2022-08-21 16:57:00 <-- TestingPlant (~TestingPl@gateway/tor-sasl/testingplant) a quitté (Remote host closed the connection) 2022-08-21 16:57:36 --> TestingPlant (~TestingPl@gateway/tor-sasl/testingplant) a rejoint #mcdevs 2022-08-21 18:20:17 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 256 seconds) 2022-08-21 18:34:10 <-- TestingPlant (~TestingPl@gateway/tor-sasl/testingplant) a quitté (Remote host closed the connection) 2022-08-21 18:40:24 --> TestingPlant (~TestingPl@gateway/tor-sasl/testingplant) a rejoint #mcdevs 2022-08-21 19:16:08 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-21 19:55:13 <-- TestingPlant (~TestingPl@gateway/tor-sasl/testingplant) a quitté (Remote host closed the connection) 2022-08-21 19:55:51 --> TestingPlant (~TestingPl@gateway/tor-sasl/testingplant) a rejoint #mcdevs 2022-08-21 22:10:12 <-- Techcable (~Techcable@user/Techcable) a quitté (Remote host closed the connection) 2022-08-21 22:12:12 --> Techcable (~Techcable@user/Techcable) a rejoint #mcdevs 2022-08-21 22:41:38 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 248 seconds) 2022-08-21 23:28:24 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-21 23:42:08 <-- TestingPlant (~TestingPl@gateway/tor-sasl/testingplant) a quitté (Remote host closed the connection) 2022-08-21 23:43:20 --> TestingPlant (~TestingPl@gateway/tor-sasl/testingplant) a rejoint #mcdevs 2022-08-21 23:51:51 <-- TestingPlant (~TestingPl@gateway/tor-sasl/testingplant) a quitté (Ping timeout: 268 seconds) 2022-08-22 00:26:07 --> TestingPlant (~TestingPl@gateway/tor-sasl/testingplant) a rejoint #mcdevs 2022-08-22 01:32:44 <-- Thinkofname (~thinkthin@37.205.12.211) a quitté (Quit: Bridge terminating on SIGTERM) 2022-08-22 01:33:56 --> Thinkofname (~thinkthin@37.205.12.211) a rejoint #mcdevs 2022-08-22 02:14:58 <-- TestingPlant (~TestingPl@gateway/tor-sasl/testingplant) a quitté (Quit: TestingPlant) 2022-08-22 04:31:41 --> gabray (~quassel@2601:2c2:683:5300:ecca:74c8:4c60:f685) a rejoint #mcdevs 2022-08-22 04:36:35 <-- gabray (~quassel@2601:2c2:683:5300:ecca:74c8:4c60:f685) a quitté (Quit: Client Quit/Disconnect) 2022-08-22 05:37:43 --> enimaloc (~enimaloc@eth-east-parth2-46-193-65-90.wb.wifirst.net) a rejoint #mcdevs 2022-08-22 06:09:35 --> enimaloc4 (~enimaloc@29.ip-151-80-61.eu) a rejoint #mcdevs 2022-08-22 06:09:44 <-- enimaloc (~enimaloc@eth-east-parth2-46-193-65-90.wb.wifirst.net) a quitté #mcdevs 2022-08-22 06:10:21 -- enimaloc4 est maintenant connu sous le nom enimaloc 2022-08-22 06:16:34 enimaloc Hi, I've a problems when sending LOGIN packet (0x23), I am getting "Internal Exception: io.netty.handler.codec.DecoderException: java.io.IOException: Packet 0/35 (uq) was larger than I expected, found 1109 bytes extra whilst reading packet 35", what can cause this ? 2022-08-22 06:33:20 pokechu22 enimaloc: What version are you using? I'm not aware of any where there's a login packet with ID 0x23 2022-08-22 06:36:08 enimaloc pokechu22 I'm using last protocol version, the login packet is described at https://wiki.vg/Protocol#Login_.28play.29 2022-08-22 06:39:22 pokechu22 Oh, apparently my knowledge is out of date; I remember that being named "join game" or something like that 2022-08-22 06:40:03 enimaloc Yeah I see that when I'm trying to find solution on open source server 2022-08-22 06:40:45 pokechu22 Most likely, you're formatting the NBT data incorrectly. That kind of error occurs when the client reads the packet in its entirety but there's still more data based on the length in the packet's header (which usually means you messed up the packet's formatting earlier on, and NBT is somewhat easy to mess up) 2022-08-22 06:49:21 enimaloc Umh, tanks for your reply, do you know any tools to verify if my generated NBT is correct ? 2022-08-22 06:57:56 pokechu22 No, but I guess if you dump your packet to a file, you'll know that the issue is probably around 1109 bytes from the end 2022-08-22 07:27:18 enimaloc To be clear, the length is a VarInt at first and second byte and it's equals of all bits minus the two first bytes ? If yes, the total length is 1159 and the VarInt is 1157, so the size is correct ? No ? 2022-08-22 07:31:21 pokechu22 The varint should be 1157, yes 2022-08-22 07:33:46 enimaloc So in this case, what's the problem ? 2022-08-22 07:42:03 pokechu22 Easiest way to understand it would be to look at https://wiki.vg/Protocol#Update_Time instead - that packet is always 16 bytes long. If you instead sent, say, 24 bytes (e.g. by writing 3 longs), the game would say that the packet was larger than expected and it found 8 extra bytes. 2022-08-22 07:43:48 pokechu22 It's a bit more complicated here because there are variable-length fields here (and some such as NBT don't even have a length prefix). But if you're sending a length of 1157 and it says it found 1109 more bytes, that means the game only did something with the first 48 bytes 2022-08-22 07:47:58 enimaloc I can send Update Time before Login ? 2022-08-22 07:49:24 pokechu22 No, I'm just using it as an example because it has a simple format 2022-08-22 09:12:32 <-- Techcable (~Techcable@user/Techcable) a quitté (Remote host closed the connection) 2022-08-22 09:13:58 --> Techcable (~Techcable@user/Techcable) a rejoint #mcdevs 2022-08-22 10:39:28 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 256 seconds) 2022-08-22 11:49:24 --> ImNootingHere (~Thunderbi@ip-175.net-80-236-96.joinville.rev.numericable.fr) a rejoint #mcdevs 2022-08-22 12:13:03 --> ImNootingHere1 (~Thunderbi@ip-175.net-80-236-96.joinville.rev.numericable.fr) a rejoint #mcdevs 2022-08-22 12:14:41 <-- ImNootingHere (~Thunderbi@ip-175.net-80-236-96.joinville.rev.numericable.fr) a quitté (Ping timeout: 256 seconds) 2022-08-22 12:14:41 -- ImNootingHere1 est maintenant connu sous le nom ImNootingHere 2022-08-22 14:31:38 <-- camotoy (~camotoy@104-4-111-192.lightspeed.bcvloh.sbcglobal.net) a quitté (Quit: ZNC 1.8.1 - https://znc.in) 2022-08-22 14:52:20 --> camotoy (~camotoy@104-4-111-192.lightspeed.bcvloh.sbcglobal.net) a rejoint #mcdevs 2022-08-22 18:58:40 --> RMHeuer (~RMHeuer@204-209-14-56.fttp.usinternet.com) a rejoint #mcdevs 2022-08-22 18:59:10 RMHeuer Hello, when is the 0x1E Player Input packet used, and what is it's purpose? 2022-08-22 19:03:18 pokechu22 I think that's used when on a horse? Maybe also when on a boat or minecart (but see also 0x18 Paddle Boat) 2022-08-22 19:10:37 RMHeuer ok, thank you 2022-08-22 19:10:42 <-- RMHeuer (~RMHeuer@204-209-14-56.fttp.usinternet.com) a quitté (Quit: Client closed) 2022-08-22 21:04:14 <-- hub (~hub@user/hub) a quitté (Quit: -) 2022-08-22 21:04:47 --> hub (~hub@user/hub) a rejoint #mcdevs 2022-08-22 21:16:59 <-- Techcable (~Techcable@user/Techcable) a quitté (Ping timeout: 256 seconds) 2022-08-22 21:26:16 --> ImNootingHere1 (~Thunderbi@194.182.188.61) a rejoint #mcdevs 2022-08-22 21:27:50 <-- ImNootingHere (~Thunderbi@ip-175.net-80-236-96.joinville.rev.numericable.fr) a quitté (Ping timeout: 244 seconds) 2022-08-22 21:27:51 -- ImNootingHere1 est maintenant connu sous le nom ImNootingHere 2022-08-22 21:30:47 --> ImNootingHere1 (~Thunderbi@194.182.188.61) a rejoint #mcdevs 2022-08-22 21:34:17 <-- ImNootingHere (~Thunderbi@194.182.188.61) a quitté (Ping timeout: 252 seconds) 2022-08-22 21:34:17 -- ImNootingHere1 est maintenant connu sous le nom ImNootingHere 2022-08-22 21:40:47 <-- ImNootingHere (~Thunderbi@194.182.188.61) a quitté (Ping timeout: 256 seconds) 2022-08-22 21:40:47 --> ImNootingHere1 (~Thunderbi@194.182.188.61) a rejoint #mcdevs 2022-08-22 21:43:29 --> ImNootingHere (~Thunderbi@194.182.188.61) a rejoint #mcdevs 2022-08-22 21:44:04 <-- ImNootingHere1 (~Thunderbi@194.182.188.61) a quitté (Read error: Connection reset by peer) 2022-08-22 21:56:17 <-- ImNootingHere (~Thunderbi@194.182.188.61) a quitté (Ping timeout: 255 seconds) 2022-08-22 21:56:25 --> ImNootingHere (~Thunderbi@194.182.188.61) a rejoint #mcdevs 2022-08-22 21:57:51 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-22 22:04:49 --> ImNootingHere1 (~Thunderbi@ip-175.net-80-236-96.joinville.rev.numericable.fr) a rejoint #mcdevs 2022-08-22 22:07:25 <-- ImNootingHere (~Thunderbi@194.182.188.61) a quitté (Ping timeout: 256 seconds) 2022-08-22 22:07:25 -- ImNootingHere1 est maintenant connu sous le nom ImNootingHere 2022-08-22 22:16:09 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2022-08-22 23:09:04 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-22 23:32:35 <-- ImNootingHere (~Thunderbi@ip-175.net-80-236-96.joinville.rev.numericable.fr) a quitté (Quit: ImNootingHere) 2022-08-22 23:34:14 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Ping timeout: 252 seconds) 2022-08-22 23:40:44 <-- daswf852 (~daswf852@user/daswf852) a quitté (Quit: see you space cowboy...) 2022-08-22 23:42:31 --> daswf852 (~daswf852@user/daswf852) a rejoint #mcdevs 2022-08-22 23:48:52 --> daswf8527 (~daswf852@user/daswf852) a rejoint #mcdevs 2022-08-22 23:51:41 <-- daswf852 (~daswf852@user/daswf852) a quitté (Ping timeout: 268 seconds) 2022-08-22 23:53:59 <-- daswf8527 (~daswf852@user/daswf852) a quitté (Ping timeout: 252 seconds) 2022-08-23 01:42:04 <-- Schoentoon (~Schoentoo@schoentoon.com) a quitté (Read error: Connection reset by peer) 2022-08-23 01:45:02 --> Schoentoon (~Schoentoo@schoentoon.com) a rejoint #mcdevs 2022-08-23 04:00:17 --> RMHeuer (~RMHeuer@204-209-14-56.fttp.usinternet.com) a rejoint #mcdevs 2022-08-23 04:00:52 RMHeuer Hello, when editing pages on wiki.vg, what would be considered a "minor edit"? 2022-08-23 04:04:10 pokechu22 https://en.wikipedia.org/wiki/Help:Minor_edit is a general guideline, but in the long run, it doesn't really matter whether it's minor or not 2022-08-23 04:16:02 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 248 seconds) 2022-08-23 05:14:27 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-23 05:36:28 <-- l4mRh4X0r (l4mRh4X0r@pomacium.student.ipv6.utwente.nl) a quitté (Ping timeout: 268 seconds) 2022-08-23 05:39:22 --> l4mRh4X0r (l4mRh4X0r@pomacium.student.ipv6.utwente.nl) a rejoint #mcdevs 2022-08-23 08:36:29 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 252 seconds) 2022-08-23 09:13:16 --> Techcable (~Techcable@user/Techcable) a rejoint #mcdevs 2022-08-23 09:46:43 <-- NoahvdAa (~NoahvdAa@user/noahvdaa) a quitté (Quit: Ping timeout (120 seconds)) 2022-08-23 09:47:01 --> NoahvdAa (~NoahvdAa@user/noahvdaa) a rejoint #mcdevs 2022-08-23 12:10:10 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 248 seconds) 2022-08-23 12:10:17 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-23 12:58:28 <-- RMHeuer (~RMHeuer@204-209-14-56.fttp.usinternet.com) a quitté (Quit: Client closed) 2022-08-23 14:45:06 enimaloc Hi, what can cause this exception message in the client "Internal Exception: io.netty.handler.codec.DecoderException: io.netty.codec.EncoderException: Failed to decode: Not a map: null null" ? i'm using JOIN packet (previously named JOIN GAME) 2022-08-23 15:05:32 <-- enimaloc (~enimaloc@29.ip-151-80-61.eu) a quitté (Quit: The Lounge - https://thelounge.chat) 2022-08-23 15:06:47 --> enimaloc (~enimaloc@29.ip-151-80-61.eu) a rejoint #mcdevs 2022-08-23 15:09:18 <-- enimaloc (~enimaloc@29.ip-151-80-61.eu) a quitté (Client Quit) 2022-08-23 15:09:30 --> enimaloc (~enimaloc@29.ip-151-80-61.eu) a rejoint #mcdevs 2022-08-23 15:10:30 <-- enimaloc (~enimaloc@29.ip-151-80-61.eu) a quitté (Client Quit) 2022-08-23 15:10:42 --> enimaloc (~enimaloc@29.ip-151-80-61.eu) a rejoint #mcdevs 2022-08-23 15:45:33 --> ImNootingHere (~Thunderbi@ip-175.net-80-236-96.joinville.rev.numericable.fr) a rejoint #mcdevs 2022-08-23 17:03:39 --> RMHeuer (~RMHeuer@204-209-14-56.fttp.usinternet.com) a rejoint #mcdevs 2022-08-23 17:06:06 RMHeuer What parts of the Chunk Data and Update Light packet are not present when not in the overworld, or is the message outdated? 2022-08-23 17:43:00 RMHeuer It appears that skylight is sent regardless of the player's dimension so I will remove the message 2022-08-23 18:17:25 --> ImNootingHere1 (~Thunderbi@ip-175.net-80-236-96.joinville.rev.numericable.fr) a rejoint #mcdevs 2022-08-23 18:18:43 <-- ImNootingHere (~Thunderbi@ip-175.net-80-236-96.joinville.rev.numericable.fr) a quitté (Ping timeout: 248 seconds) 2022-08-23 18:18:43 -- ImNootingHere1 est maintenant connu sous le nom ImNootingHere 2022-08-23 18:31:34 --> ImNootingHere1 (~Thunderbi@ip-175.net-80-236-96.joinville.rev.numericable.fr) a rejoint #mcdevs 2022-08-23 18:33:06 <-- ImNootingHere (~Thunderbi@ip-175.net-80-236-96.joinville.rev.numericable.fr) a quitté (Ping timeout: 248 seconds) 2022-08-23 18:33:07 -- ImNootingHere1 est maintenant connu sous le nom ImNootingHere 2022-08-23 18:53:00 bswartz RMHeuer: There's no skylight in the nether 2022-08-23 18:53:22 bswartz And I'm not 100% certain, but I think there's no skylight in the_end either 2022-08-23 19:11:39 <-- ImNootingHere (~Thunderbi@ip-175.net-80-236-96.joinville.rev.numericable.fr) a quitté (Quit: ImNootingHere) 2022-08-23 21:00:18 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 248 seconds) 2022-08-23 23:18:53 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-23 23:43:07 <-- RMHeuer (~RMHeuer@204-209-14-56.fttp.usinternet.com) a quitté (Quit: Client closed) 2022-08-24 00:14:33 --> RMHeuer (~RMHeuer@204-209-14-56.fttp.usinternet.com) a rejoint #mcdevs 2022-08-24 01:09:12 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 256 seconds) 2022-08-24 02:00:05 <-- NoahvdAa (~NoahvdAa@user/noahvdaa) a quitté (*.net *.split) 2022-08-24 02:00:05 <-- l4mRh4X0r (l4mRh4X0r@pomacium.student.ipv6.utwente.nl) a quitté (*.net *.split) 2022-08-24 02:00:06 <-- Thinkofname (~thinkthin@37.205.12.211) a quitté (*.net *.split) 2022-08-24 02:00:06 <-- C4K3 (~C4K3@fen.c4k3.net) a quitté (*.net *.split) 2022-08-24 02:00:06 <-- MisterVector (~Vector@47.151.222.161) a quitté (*.net *.split) 2022-08-24 02:00:06 <-- clonejo1 (~clonejo@shakik3.shakik.de) a quitté (*.net *.split) 2022-08-24 02:00:07 <-- ckie (~ckie@user/cookie) a quitté (*.net *.split) 2022-08-24 02:00:17 --> C4K3 (~C4K3@fen.c4k3.net) a rejoint #mcdevs 2022-08-24 02:00:22 --> l4mRh4X0r (l4mRh4X0r@pomacium.student.ipv6.utwente.nl) a rejoint #mcdevs 2022-08-24 02:01:25 --> MisterVector (~Vector@47.151.222.161) a rejoint #mcdevs 2022-08-24 02:01:38 --> Thinkofname (~thinkthin@37.205.12.211) a rejoint #mcdevs 2022-08-24 02:02:26 --> clonejo1 (~clonejo@shakik3.shakik.de) a rejoint #mcdevs 2022-08-24 02:03:37 --> NoahvdAa (~NoahvdAa@user/noahvdaa) a rejoint #mcdevs 2022-08-24 02:07:52 --> ckie (~ckie@user/cookie) a rejoint #mcdevs 2022-08-24 02:23:52 --> gabray (~quassel@c-73-6-230-214.hsd1.tx.comcast.net) a rejoint #mcdevs 2022-08-24 02:25:12 -- gabray est maintenant connu sous le nom gabray2 2022-08-24 02:28:36 -- gabray2 est maintenant connu sous le nom gabray5 2022-08-24 02:29:14 -- gabray5 est maintenant connu sous le nom gabray2 2022-08-24 02:30:20 -- gabray2 est maintenant connu sous le nom gabray56 2022-08-24 02:33:37 -- gabray56 est maintenant connu sous le nom gabray232 2022-08-24 02:35:03 -- gabray232 est maintenant connu sous le nom gabray22 2022-08-24 02:46:21 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-24 03:07:56 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-24 03:08:10 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-24 03:08:41 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-24 03:08:53 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-24 03:09:03 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-24 03:09:15 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-24 03:09:22 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-24 03:09:34 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-24 03:09:41 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-24 03:09:54 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-24 03:10:01 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-24 03:10:13 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-24 03:10:20 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-24 03:10:33 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-24 03:37:39 <-- gabray22 (~quassel@c-73-6-230-214.hsd1.tx.comcast.net) a quitté (Quit: Client Quit/Disconnect) 2022-08-24 03:40:17 --> gabray (~quassel@c-73-6-230-214.hsd1.tx.comcast.net) a rejoint #mcdevs 2022-08-24 03:44:31 <-- gabray (~quassel@c-73-6-230-214.hsd1.tx.comcast.net) a quitté (Client Quit) 2022-08-24 03:45:07 --> gabray (~quassel@c-73-6-230-214.hsd1.tx.comcast.net) a rejoint #mcdevs 2022-08-24 03:45:19 <-- gabray (~quassel@c-73-6-230-214.hsd1.tx.comcast.net) a quitté (Client Quit) 2022-08-24 03:46:27 --> gabray (~quassel@c-73-6-230-214.hsd1.tx.comcast.net) a rejoint #mcdevs 2022-08-24 03:46:42 <-- gabray (~quassel@c-73-6-230-214.hsd1.tx.comcast.net) a quitté (Client Quit) 2022-08-24 03:49:07 --> gabray (~quassel@c-73-6-230-214.hsd1.tx.comcast.net) a rejoint #mcdevs 2022-08-24 03:55:10 <-- gabray (~quassel@c-73-6-230-214.hsd1.tx.comcast.net) a quitté (Quit: Client Quit/Disconnect) 2022-08-24 03:55:55 --> gabray (~quassel@c-73-6-230-214.hsd1.tx.comcast.net) a rejoint #mcdevs 2022-08-24 04:03:21 <-- gabray (~quassel@c-73-6-230-214.hsd1.tx.comcast.net) a quitté (Quit: Client Quit/Disconnect) 2022-08-24 04:05:45 --> gabray (~quassel@c-73-6-230-214.hsd1.tx.comcast.net) a rejoint #mcdevs 2022-08-24 04:06:07 <-- gabray (~quassel@c-73-6-230-214.hsd1.tx.comcast.net) a quitté (Client Quit) 2022-08-24 04:06:24 --> gabray (~quassel@c-73-6-230-214.hsd1.tx.comcast.net) a rejoint #mcdevs 2022-08-24 04:06:57 <-- gabray (~quassel@c-73-6-230-214.hsd1.tx.comcast.net) a quitté (Client Quit) 2022-08-24 04:07:26 --> gabray (~gabray52@c-73-6-230-214.hsd1.tx.comcast.net) a rejoint #mcdevs 2022-08-24 04:24:01 <-- gabray (~gabray52@c-73-6-230-214.hsd1.tx.comcast.net) a quitté #mcdevs 2022-08-24 08:51:24 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-24 11:03:06 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 260 seconds) 2022-08-24 12:13:31 <-- dav1d (~dav1d@user/dav1d) a quitté (Ping timeout: 268 seconds) 2022-08-24 12:20:44 --> dav1d (~dav1d@user/dav1d) a rejoint #mcdevs 2022-08-24 12:33:20 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 268 seconds) 2022-08-24 14:03:14 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-24 15:41:07 --> ImNootingHere (~Thunderbi@ip-175.net-80-236-96.joinville.rev.numericable.fr) a rejoint #mcdevs 2022-08-24 16:07:48 <-- RMHeuer (~RMHeuer@204-209-14-56.fttp.usinternet.com) a quitté (Ping timeout: 252 seconds) 2022-08-24 16:11:06 <-- ImNootingHere (~Thunderbi@ip-175.net-80-236-96.joinville.rev.numericable.fr) a quitté (Quit: ImNootingHere) 2022-08-24 17:20:20 --> ImNootingHere (~Thunderbi@ip-175.net-80-236-96.joinville.rev.numericable.fr) a rejoint #mcdevs 2022-08-24 18:28:11 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 260 seconds) 2022-08-24 20:52:51 <-- dav1d (~dav1d@user/dav1d) a quitté (Ping timeout: 260 seconds) 2022-08-24 20:55:41 --> dav1d (~dav1d@user/dav1d) a rejoint #mcdevs 2022-08-24 21:36:23 <-- ImNootingHere (~Thunderbi@ip-175.net-80-236-96.joinville.rev.numericable.fr) a quitté (Quit: ImNootingHere) 2022-08-24 21:48:54 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-24 22:21:44 --> ImNootingHere (~Thunderbi@ip-175.net-80-236-96.joinville.rev.numericable.fr) a rejoint #mcdevs 2022-08-24 23:05:11 <-- SpaceManiac (~SpaceMani@c-73-116-110-236.hsd1.ca.comcast.net) a quitté (Ping timeout: 255 seconds) 2022-08-24 23:08:24 --> SpaceManiac (~SpaceMani@c-73-116-110-236.hsd1.ca.comcast.net) a rejoint #mcdevs 2022-08-24 23:15:10 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-25 00:10:13 <-- ImNootingHere (~Thunderbi@ip-175.net-80-236-96.joinville.rev.numericable.fr) a quitté (Quit: ImNootingHere) 2022-08-25 03:07:28 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-25 03:07:50 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-25 03:08:42 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-25 03:08:55 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-25 03:09:06 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-25 03:09:18 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-25 03:09:26 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-25 03:09:48 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-25 03:09:56 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-25 03:10:08 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-25 03:10:16 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-25 03:10:32 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-25 03:10:36 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-25 03:10:48 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-25 03:10:56 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-25 03:11:08 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-25 05:04:36 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 260 seconds) 2022-08-25 05:57:30 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-25 13:26:16 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 260 seconds) 2022-08-25 13:31:50 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 255 seconds) 2022-08-25 17:08:18 --> daswf8527 (~daswf852@user/daswf852) a rejoint #mcdevs 2022-08-25 17:09:23 <-- daswf8527 (~daswf852@user/daswf852) a quitté (Client Quit) 2022-08-25 17:12:31 --> daswf8527 (~daswf852@user/daswf852) a rejoint #mcdevs 2022-08-25 18:22:10 -- daswf8527 est maintenant connu sous le nom daswf852 2022-08-25 18:37:49 <-- nickelpro (nickelpro@i.am.the.only.nickelp.ro) a quitté (Remote host closed the connection) 2022-08-25 18:46:05 --> nickelpro (nickelpro@i.am.the.only.nickelp.ro) a rejoint #mcdevs 2022-08-25 23:03:08 --> daswf8521 (~daswf852@user/daswf852) a rejoint #mcdevs 2022-08-25 23:05:39 <-- daswf852 (~daswf852@user/daswf852) a quitté (Ping timeout: 252 seconds) 2022-08-25 23:05:39 -- daswf8521 est maintenant connu sous le nom daswf852 2022-08-25 23:23:38 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-25 23:28:01 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 252 seconds) 2022-08-26 00:39:09 -- irc : déconnecté du serveur 2022-08-26 00:39:28 --> rom1504 (rom1504@rom1504.fr) a rejoint #mcdevs 2022-08-26 00:39:28 -- 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/" 2022-08-26 00:39:28 -- Titre défini par TkTech le mer., 19 mai 2021 23:14:27 2022-08-26 00:39:28 -- Canal #mcdevs : 71 pseudos (1 op, 0 voice, 70 normaux) 2022-08-26 00:39:28 -- URL pour #mcdevs : https://wiki.vg 2022-08-26 00:40:02 -- Canal créé le mer., 19 mai 2021 16:40:13 2022-08-26 03:06:00 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-26 03:06:28 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-26 03:07:07 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-26 03:07:19 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-26 03:07:28 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-26 03:07:44 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-26 03:07:47 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-26 03:08:00 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-26 03:08:07 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-26 03:08:19 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-26 03:08:25 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-26 03:08:38 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-26 03:08:45 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-26 03:08:57 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-26 03:09:04 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-26 03:09:16 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-26 03:09:23 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-26 03:09:35 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-26 03:09:42 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-26 03:09:53 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-26 03:10:02 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-26 03:10:15 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-26 03:10:22 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-26 03:10:35 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-26 03:10:43 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-26 03:10:55 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-26 03:11:02 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-26 03:11:15 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-26 03:11:22 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-26 03:11:34 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-26 03:11:42 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-26 03:11:54 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-26 03:12:02 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-26 03:12:14 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-26 03:12:20 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-26 03:12:33 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-26 03:12:40 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-26 03:12:52 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-26 03:12:59 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-26 03:13:12 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-26 03:13:18 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-26 03:13:30 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-26 03:13:38 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-26 03:13:50 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-26 03:13:58 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-26 03:14:11 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-26 03:14:19 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-26 03:14:31 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-26 03:14:38 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-26 03:14:50 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-26 03:14:58 <-- Luck (~Luck@v2202102140730142292.goodsrv.de) a quitté (Remote host closed the connection) 2022-08-26 03:15:11 --> Luck (~Luck@v2202102140730142292.goodsrv.de) a rejoint #mcdevs 2022-08-26 13:38:11 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 260 seconds) 2022-08-26 17:05:01 <-- DrinkyBird (~drinkybir@idlerpg/player/DrinkyBird) a quitté (Quit: i dont say any more word without my loyer jenova) 2022-08-26 18:10:06 <-- C4K3 (~C4K3@fen.c4k3.net) a quitté (Remote host closed the connection) 2022-08-26 18:31:29 --> C4K3 (~C4K3@fen.c4k3.net) a rejoint #mcdevs 2022-08-26 20:23:37 --> DrinkyBird (~drinkybir@idlerpg/player/DrinkyBird) a rejoint #mcdevs 2022-08-26 21:59:44 --> gabray (~gabray@172.58.101.215) a rejoint #mcdevs 2022-08-26 22:04:34 <-- gabray (~gabray@172.58.101.215) a quitté (Quit: Quitting) 2022-08-26 22:33:10 --> gabray (~gabray@c-73-6-230-214.hsd1.tx.comcast.net) a rejoint #mcdevs 2022-08-26 22:51:45 <-- gabray (~gabray@c-73-6-230-214.hsd1.tx.comcast.net) a quitté #mcdevs 2022-08-26 23:58:05 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-27 00:42:22 --> gabray (~gabray@2607:fb90:5d08:40b9:a1ac:18d2:5d24:23c3) a rejoint #mcdevs 2022-08-27 00:55:35 <-- gabray (~gabray@2607:fb90:5d08:40b9:a1ac:18d2:5d24:23c3) a quitté (Quit: Ping timeout: 20 seconds) 2022-08-27 05:41:35 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-27 09:32:17 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 268 seconds) 2022-08-27 11:20:58 --> wulfaz (~wulfaz0__@c-73-140-3-197.hsd1.wa.comcast.net) a rejoint #mcdevs 2022-08-27 11:37:35 <-- daswf852 (~daswf852@user/daswf852) a quitté (Ping timeout: 252 seconds) 2022-08-27 11:37:41 --> daswf8522 (~daswf852@user/daswf852) a rejoint #mcdevs 2022-08-27 11:38:10 <-- daswf8522 (~daswf852@user/daswf852) a quitté (Client Quit) 2022-08-27 11:39:55 --> daswf8522 (~daswf852@user/daswf852) a rejoint #mcdevs 2022-08-27 12:23:43 <-- wulfaz (~wulfaz0__@c-73-140-3-197.hsd1.wa.comcast.net) a quitté (Ping timeout: 268 seconds) 2022-08-27 14:27:35 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-27 14:35:03 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 252 seconds) 2022-08-27 19:19:17 --> wulfaz (~wulfaz0__@c-73-140-3-197.hsd1.wa.comcast.net) a rejoint #mcdevs 2022-08-27 21:53:08 <-- wulfaz (~wulfaz0__@c-73-140-3-197.hsd1.wa.comcast.net) a quitté (Remote host closed the connection) 2022-08-27 21:53:30 --> wulfaz (~wulfaz0__@c-73-140-3-197.hsd1.wa.comcast.net) a rejoint #mcdevs 2022-08-27 22:04:07 --> Etan (~Etan@144-234-178-143.ftth.glasoperator.nl) a rejoint #mcdevs 2022-08-27 22:29:51 <-- Etan (~Etan@144-234-178-143.ftth.glasoperator.nl) a quitté (Read error: Connection reset by peer) 2022-08-27 23:42:46 <-- wulfaz (~wulfaz0__@c-73-140-3-197.hsd1.wa.comcast.net) a quitté (Ping timeout: 260 seconds) 2022-08-27 23:46:14 --> Guest18 (~Guest18@pool-96-240-108-130.nwrknj.fios.verizon.net) a rejoint #mcdevs 2022-08-27 23:46:31 Guest18 Hi 2022-08-27 23:46:56 Guest18 Is there any work done on updating wiki.vg to 1.19.2? (protocol 760) 2022-08-27 23:53:29 <-- Guest18 (~Guest18@pool-96-240-108-130.nwrknj.fios.verizon.net) a quitté (Quit: Client closed) 2022-08-27 23:53:45 --> wulfaz (~wulfaz0__@c-73-140-3-197.hsd1.wa.comcast.net) a rejoint #mcdevs 2022-08-28 01:02:57 --> Guest18 (~Guest18@pool-96-240-108-130.nwrknj.fios.verizon.net) a rejoint #mcdevs 2022-08-28 01:23:57 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-28 01:25:19 <-- Guest18 (~Guest18@pool-96-240-108-130.nwrknj.fios.verizon.net) a quitté (Quit: Client closed) 2022-08-28 02:10:16 --> Guest18 (~Guest18@pool-96-240-108-130.nwrknj.fios.verizon.net) a rejoint #mcdevs 2022-08-28 02:27:10 <-- Guest18 (~Guest18@pool-96-240-108-130.nwrknj.fios.verizon.net) a quitté (Quit: Client closed) 2022-08-28 02:47:20 --> Guest18 (~Guest18@pool-96-240-108-130.nwrknj.fios.verizon.net) a rejoint #mcdevs 2022-08-28 03:26:35 <-- Guest18 (~Guest18@pool-96-240-108-130.nwrknj.fios.verizon.net) a quitté (Quit: Client closed) 2022-08-28 04:03:31 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 268 seconds) 2022-08-28 06:42:19 <-- wulfaz (~wulfaz0__@c-73-140-3-197.hsd1.wa.comcast.net) a quitté (Remote host closed the connection) 2022-08-28 06:42:40 --> wulfaz (~wulfaz0__@c-73-140-3-197.hsd1.wa.comcast.net) a rejoint #mcdevs 2022-08-28 09:29:11 <-- wulfaz (~wulfaz0__@c-73-140-3-197.hsd1.wa.comcast.net) a quitté (Read error: Connection reset by peer) 2022-08-28 10:12:11 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 260 seconds) 2022-08-28 14:11:31 <-- Schoentoon (~Schoentoo@schoentoon.com) a quitté (Ping timeout: 268 seconds) 2022-08-28 15:23:16 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-28 15:24:16 --> Schoentoon (~Schoentoo@schoentoon.com) a rejoint #mcdevs 2022-08-28 15:32:31 <-- Thinkofname (~thinkthin@37.205.12.211) a quitté (Quit: Bridge terminating on SIGTERM) 2022-08-28 15:34:00 --> Thinkofname (~thinkthin@37.205.12.211) a rejoint #mcdevs 2022-08-28 15:36:43 --> dav1d9 (~dav1d@user/dav1d) a rejoint #mcdevs 2022-08-28 15:38:51 <-- dav1d (~dav1d@user/dav1d) a quitté (Ping timeout: 260 seconds) 2022-08-28 15:38:51 -- dav1d9 est maintenant connu sous le nom dav1d 2022-08-28 17:18:03 --> mdcfe6 (~mdcfe@lemons.mdcfe.dev) a rejoint #mcdevs 2022-08-28 17:18:56 --> haykam (~haykam@user/haykam) a rejoint #mcdevs 2022-08-28 17:21:02 --> Disco (~quassel@irc.disconsented.com) a rejoint #mcdevs 2022-08-28 17:21:06 --> SpaceMan1ac (~SpaceMani@c-73-116-110-236.hsd1.ca.comcast.net) a rejoint #mcdevs 2022-08-28 17:21:30 <-- haykam_ (~haykam@user/haykam) a quitté (Ping timeout: 252 seconds) 2022-08-28 17:21:30 <-- sudden (~cat@user/sudden) a quitté (Ping timeout: 252 seconds) 2022-08-28 17:21:30 <-- Disconsented (~quassel@irc.disconsented.com) a quitté (Ping timeout: 252 seconds) 2022-08-28 17:21:30 <-- SpaceManiac (~SpaceMani@c-73-116-110-236.hsd1.ca.comcast.net) a quitté (Ping timeout: 252 seconds) 2022-08-28 17:21:31 <-- mdcfe (~mdcfe@lemons.mdcfe.dev) a quitté (Ping timeout: 252 seconds) 2022-08-28 17:21:34 -- SpaceMan1ac est maintenant connu sous le nom SpaceManiac 2022-08-28 17:21:34 -- mdcfe6 est maintenant connu sous le nom mdcfe 2022-08-28 17:21:57 --> sudden (~cat@user/sudden) a rejoint #mcdevs 2022-08-28 18:08:43 --> Talhoid (~Talhoid@2601:402:4580:5670:bd8a:2c0a:7b72:3bdc) a rejoint #mcdevs 2022-08-28 18:10:08 Talhoid hello 2022-08-28 18:48:28 --> Etan (~Etan@144-234-178-143.ftth.glasoperator.nl) a rejoint #mcdevs 2022-08-28 18:49:48 <-- Etan (~Etan@144-234-178-143.ftth.glasoperator.nl) a quitté (Client Quit) 2022-08-28 18:50:07 --> Etan (~Etan@144-234-178-143.ftth.glasoperator.nl) a rejoint #mcdevs 2022-08-28 18:50:49 <-- Etan (~Etan@144-234-178-143.ftth.glasoperator.nl) a quitté (Remote host closed the connection) 2022-08-28 18:51:04 --> Etan (~Etan@144-234-178-143.ftth.glasoperator.nl) a rejoint #mcdevs 2022-08-28 18:53:41 <-- Etan (~Etan@144-234-178-143.ftth.glasoperator.nl) a quitté (Client Quit) 2022-08-28 18:53:58 --> Etan (~Etan@144-234-178-143.ftth.glasoperator.nl) a rejoint #mcdevs 2022-08-28 19:06:20 <-- Talhoid (~Talhoid@2601:402:4580:5670:bd8a:2c0a:7b72:3bdc) a quitté (Ping timeout: 252 seconds) 2022-08-28 20:37:43 --> gabray (~gabray@2607:fb90:207c:f640:3005:1690:e9fb:bb8e) a rejoint #mcdevs 2022-08-28 20:40:24 gabray ima probably test out 1.19.2 with the current specifications, if there are no changes according to snapshot 2022-08-28 20:40:45 gabray if there is then the protocol documentation might be updated 2022-08-28 20:41:18 pokechu22 There definitely have been changes: see https://pokechu22.github.io/Burger/diff_1.19_1.19.1.html 2022-08-28 20:41:27 gabray ok, I see now 2022-08-28 20:41:36 pokechu22 (there are no changes between 1.19.1 and 1.19.2 though, including the protocol version) 2022-08-28 20:42:01 gabray just wishing if there are protocol changes 2022-08-28 20:44:28 gabray so player uuid was added since 1.19.1 I believe 2022-08-28 21:11:21 <-- gabray (~gabray@2607:fb90:207c:f640:3005:1690:e9fb:bb8e) a quitté (Quit: Ping timeout: 20 seconds) 2022-08-28 21:21:30 --> gabray (~gabray@2607:fb90:207c:f640:3005:1690:e9fb:bb8e) a rejoint #mcdevs 2022-08-28 21:39:56 gabray I decided to make 1.19.2 from scratch with my premade protocol libraries for signing purposes 2022-08-28 21:40:06 gabray since they use uuids if they have one 2022-08-28 21:40:22 gabray most likely, they have uuids attached to their account 2022-08-28 22:39:21 <-- gabray (~gabray@2607:fb90:207c:f640:3005:1690:e9fb:bb8e) a quitté (Ping timeout: 244 seconds) 2022-08-28 22:47:30 <-- Etan (~Etan@144-234-178-143.ftth.glasoperator.nl) a quitté (Read error: Connection reset by peer) 2022-08-28 23:12:24 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2022-08-28 23:14:07 --> gabray (~gabray@2607:fb90:5ce8:f883:79d1:addd:7258:3a82) a rejoint #mcdevs 2022-08-28 23:16:18 -- Disco est maintenant connu sous le nom Disconsented 2022-08-29 00:37:19 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: Client closed) 2022-08-29 00:39:02 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2022-08-29 00:53:58 <-- gabray (~gabray@2607:fb90:5ce8:f883:79d1:addd:7258:3a82) a quitté (Quit: Ping timeout: 20 seconds) 2022-08-29 01:06:57 --> gabray (~gabray@2607:fb90:5fd0:a982:79d1:addd:7258:3a82) a rejoint #mcdevs 2022-08-29 01:25:24 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-29 01:42:00 gabray So player UUID was added since 1.19.2 2022-08-29 01:42:29 gabray if a player has a UUID when trying to log in 2022-08-29 02:09:04 --> Guest18 (~Guest18@pool-96-240-108-130.nwrknj.fios.verizon.net) a rejoint #mcdevs 2022-08-29 02:09:22 <-- Guest18 (~Guest18@pool-96-240-108-130.nwrknj.fios.verizon.net) a quitté (Client Quit) 2022-08-29 02:37:15 --> wulfaz0 (~wulfaz0__@c-73-140-3-197.hsd1.wa.comcast.net) a rejoint #mcdevs 2022-08-29 03:17:02 <-- gabray (~gabray@2607:fb90:5fd0:a982:79d1:addd:7258:3a82) a quitté (Quit: Ping timeout: 20 seconds) 2022-08-29 03:31:14 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Ping timeout: 252 seconds) 2022-08-29 13:20:08 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 255 seconds) 2022-08-29 14:09:37 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 268 seconds) 2022-08-29 18:11:21 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-29 19:47:46 --> Etan (~Etan@144-234-178-143.ftth.glasoperator.nl) a rejoint #mcdevs 2022-08-29 20:46:19 <-- mdcfe (~mdcfe@lemons.mdcfe.dev) a quitté (Quit: What next? The window cleaner starts replacing your boiler?) 2022-08-29 20:47:02 --> mdcfe (~mdcfe@lemons.mdcfe.dev) a rejoint #mcdevs 2022-08-29 21:04:28 <-- hub (~hub@user/hub) a quitté (Quit: -) 2022-08-29 21:04:59 --> hub (~hub@user/hub) a rejoint #mcdevs 2022-08-29 22:45:52 <-- Etan (~Etan@144-234-178-143.ftth.glasoperator.nl) a quitté (Read error: Connection reset by peer) 2022-08-29 22:50:06 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2022-08-29 23:26:17 <-- wulfaz0 (~wulfaz0__@c-73-140-3-197.hsd1.wa.comcast.net) a quitté (Ping timeout: 255 seconds) 2022-08-29 23:30:03 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: Client closed) 2022-08-30 00:19:28 --> gabray (~quassel@2601:2c2:683:5300:8849:b907:f46a:8982) a rejoint #mcdevs 2022-08-30 00:20:05 <-- gabray (~quassel@2601:2c2:683:5300:8849:b907:f46a:8982) a quitté (Client Quit) 2022-08-30 00:40:41 --> wulfaz0 (~wulfaz0__@c-73-140-3-197.hsd1.wa.comcast.net) a rejoint #mcdevs 2022-08-30 01:02:39 <-- Geolykt (~Geolykt@94.46.93.245) a quitté (Quit: [TLS] Client upgrade) 2022-08-30 01:02:48 --> Geolykt (~Geolykt@94.46.93.245) a rejoint #mcdevs 2022-08-30 03:37:37 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-30 03:52:52 <-- wulfaz0 (~wulfaz0__@c-73-140-3-197.hsd1.wa.comcast.net) a quitté (Ping timeout: 268 seconds) 2022-08-30 05:50:57 --> wulfaz0 (~wulfaz0__@c-73-140-3-197.hsd1.wa.comcast.net) a rejoint #mcdevs 2022-08-30 07:04:51 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 260 seconds) 2022-08-30 07:25:51 <-- wulfaz0 (~wulfaz0__@c-73-140-3-197.hsd1.wa.comcast.net) a quitté (Ping timeout: 260 seconds) 2022-08-30 08:14:59 --> Spacers (~igloo@207.237.227.85) a rejoint #mcdevs 2022-08-30 08:16:27 <-- Spacers (~igloo@207.237.227.85) a quitté (Remote host closed the connection) 2022-08-30 13:05:21 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 260 seconds) 2022-08-30 13:30:39 <-- daswf8522 (~daswf852@user/daswf852) a quitté (Ping timeout: 268 seconds) 2022-08-30 13:31:07 --> daswf8522 (~daswf852@user/daswf852) a rejoint #mcdevs 2022-08-30 14:15:33 --> Spacers (~igloo@207.237.227.85) a rejoint #mcdevs 2022-08-30 14:21:48 <-- Spacers (~igloo@207.237.227.85) a quitté (Remote host closed the connection) 2022-08-30 15:13:05 --> Spacers (~igloo@191.sub-174-209-47.myvzw.com) a rejoint #mcdevs 2022-08-30 15:22:32 <-- Spacers (~igloo@191.sub-174-209-47.myvzw.com) a quitté (Ping timeout: 255 seconds) 2022-08-30 17:11:39 --> Etan (~Etan@144-234-178-143.ftth.glasoperator.nl) a rejoint #mcdevs 2022-08-30 17:13:04 <-- Etan (~Etan@144-234-178-143.ftth.glasoperator.nl) a quitté (Client Quit) 2022-08-30 17:13:19 --> Etan (~Etan@144-234-178-143.ftth.glasoperator.nl) a rejoint #mcdevs 2022-08-30 18:33:24 --> ImNootingHere (~Thunderbi@99.80.14.109.rev.sfr.net) a rejoint #mcdevs 2022-08-30 21:30:07 -- offbeatwitch est maintenant connu sous le nom obw 2022-08-30 21:47:51 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-30 21:55:08 <-- ChanServ (ChanServ@services.libera.chat) a quitté (*.net *.split) 2022-08-30 21:55:08 <-- hub (~hub@user/hub) a quitté (*.net *.split) 2022-08-30 21:55:08 <-- SpaceManiac (~SpaceMani@c-73-116-110-236.hsd1.ca.comcast.net) a quitté (*.net *.split) 2022-08-30 21:55:09 <-- haykam (~haykam@user/haykam) a quitté (*.net *.split) 2022-08-30 21:55:09 <-- Schoentoon (~Schoentoo@schoentoon.com) a quitté (*.net *.split) 2022-08-30 21:55:10 <-- ecx (~user@user/ecx) a quitté (*.net *.split) 2022-08-30 21:55:10 <-- clonejo1 (~clonejo@shakik3.shakik.de) a quitté (*.net *.split) 2022-08-30 21:55:10 <-- l4mRh4X0r (l4mRh4X0r@pomacium.student.ipv6.utwente.nl) a quitté (*.net *.split) 2022-08-30 21:55:10 <-- Techcable (~Techcable@user/Techcable) a quitté (*.net *.split) 2022-08-30 21:55:10 <-- camotoy (~camotoy@104-4-111-192.lightspeed.bcvloh.sbcglobal.net) a quitté (*.net *.split) 2022-08-30 21:55:10 <-- stack08 (~StackDoub@45-29-51-69.lightspeed.cicril.sbcglobal.net) a quitté (*.net *.split) 2022-08-30 21:55:11 <-- tny (~tny@accela.tny.town) a quitté (*.net *.split) 2022-08-30 21:55:11 <-- wanderer (~wanderer@user/wanderer) a quitté (*.net *.split) 2022-08-30 21:55:11 <-- Sainan (~Sainan@static.222.155.69.159.clients.your-server.de) a quitté (*.net *.split) 2022-08-30 21:55:11 <-- AgentK_ (~AgentK@user/agentk) a quitté (*.net *.split) 2022-08-30 21:55:11 <-- TkTech (~TkTech@modemcable053.208-22-96.mc.videotron.ca) a quitté (*.net *.split) 2022-08-30 21:55:11 <-- Rhys- (Rhys@help.lux.melted.me) a quitté (*.net *.split) 2022-08-30 21:55:11 <-- Fador (fador@hentai.fi) a quitté (*.net *.split) 2022-08-30 21:55:11 <-- ashka (~ashka@user/ashka) a quitté (*.net *.split) 2022-08-30 21:55:12 <-- Etan (~Etan@144-234-178-143.ftth.glasoperator.nl) a quitté (*.net *.split) 2022-08-30 21:55:12 <-- daswf8522 (~daswf852@user/daswf852) a quitté (*.net *.split) 2022-08-30 21:55:12 <-- Geolykt (~Geolykt@94.46.93.245) a quitté (*.net *.split) 2022-08-30 21:55:12 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (*.net *.split) 2022-08-30 21:55:12 <-- ImNootingHere (~Thunderbi@99.80.14.109.rev.sfr.net) a quitté (*.net *.split) 2022-08-30 21:55:12 <-- mdcfe (~mdcfe@lemons.mdcfe.dev) a quitté (*.net *.split) 2022-08-30 21:55:13 <-- ckie (~ckie@user/cookie) a quitté (*.net *.split) 2022-08-30 21:55:13 <-- NoahvdAa (~NoahvdAa@user/noahvdaa) a quitté (*.net *.split) 2022-08-30 21:55:13 <-- MisterVector (~Vector@47.151.222.161) a quitté (*.net *.split) 2022-08-30 21:55:13 <-- enimaloc (~enimaloc@29.ip-151-80-61.eu) a quitté (*.net *.split) 2022-08-30 21:55:13 <-- electronicboy (~electroni@atlas.valaria.pw) a quitté (*.net *.split) 2022-08-30 21:55:13 <-- dexter0 (~dexter0@c-69-181-125-164.hsd1.ca.comcast.net) a quitté (*.net *.split) 2022-08-30 21:55:13 <-- deltab (~deltab@user/deltab) a quitté (*.net *.split) 2022-08-30 21:55:13 <-- bswartz (~bswartz@user/bswartz) a quitté (*.net *.split) 2022-08-30 21:55:13 <-- Amaranth (~travis@59.ip-158-69-219.net) a quitté (*.net *.split) 2022-08-30 21:55:13 <-- Byteflux (~byte@byteflux.net) a quitté (*.net *.split) 2022-08-30 21:55:14 <-- Selicre (~x@hello.i.am.selic.re) a quitté (*.net *.split) 2022-08-30 21:55:14 <-- high_ground (~high_grou@user/high-ground/x-5722129) a quitté (*.net *.split) 2022-08-30 21:55:14 <-- killme (~killmePI@ovh4.avatarmc.com) a quitté (*.net *.split) 2022-08-30 21:55:14 <-- yosafbridge (~yosafbrid@static.38.6.217.95.clients.your-server.de) a quitté (*.net *.split) 2022-08-30 21:55:14 <-- rymiel (~rymiel@arch-houju.rymiel.space) a quitté (*.net *.split) 2022-08-30 21:55:14 <-- zml (zml@nasturtium.stellardrift.ca) a quitté (*.net *.split) 2022-08-30 21:55:15 <-- xtexChooser[m] (~xtexchoos@2001:470:69fc:105::2:4501) a quitté (*.net *.split) 2022-08-30 21:55:15 <-- ammar2 (admin@i.diddled.with.the.opers.so.they.klined.me) a quitté (*.net *.split) 2022-08-30 21:55:15 <-- The_Red_Freak (~The_Red_F@user/The-Red-Freak/x-5541572) a quitté (*.net *.split) 2022-08-30 21:55:15 <-- Dykam (Dykam@dykam.nl) a quitté (*.net *.split) 2022-08-30 21:55:16 <-- simon816 (~simon816@ec2-35-178-246-72.eu-west-2.compute.amazonaws.com) a quitté (*.net *.split) 2022-08-30 21:55:16 <-- _123DMWM (~123DMWM@me.123dmwm.com) a quitté (*.net *.split) 2022-08-30 21:55:16 <-- bixilon (~bixilon@node-3.bixilon.de) a quitté (*.net *.split) 2022-08-30 21:55:16 <-- pokechu22 (~pokechu22@user/pokechu22) a quitté (*.net *.split) 2022-08-30 21:55:16 <-- grumble (grumble@user/grumble) a quitté (*.net *.split) 2022-08-30 21:56:49 --> rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-30 21:56:49 --> ImNootingHere (~Thunderbi@99.80.14.109.rev.sfr.net) a rejoint #mcdevs 2022-08-30 21:56:49 --> Etan (~Etan@144-234-178-143.ftth.glasoperator.nl) a rejoint #mcdevs 2022-08-30 21:56:49 --> daswf8522 (~daswf852@user/daswf852) a rejoint #mcdevs 2022-08-30 21:56:49 --> Geolykt (~Geolykt@94.46.93.245) a rejoint #mcdevs 2022-08-30 21:56:49 --> hub (~hub@user/hub) a rejoint #mcdevs 2022-08-30 21:56:49 --> mdcfe (~mdcfe@lemons.mdcfe.dev) a rejoint #mcdevs 2022-08-30 21:56:49 --> SpaceManiac (~SpaceMani@c-73-116-110-236.hsd1.ca.comcast.net) a rejoint #mcdevs 2022-08-30 21:56:49 --> haykam (~haykam@user/haykam) a rejoint #mcdevs 2022-08-30 21:56:49 --> Schoentoon (~Schoentoo@schoentoon.com) a rejoint #mcdevs 2022-08-30 21:56:49 --> ecx (~user@user/ecx) a rejoint #mcdevs 2022-08-30 21:56:49 --> ckie (~ckie@user/cookie) a rejoint #mcdevs 2022-08-30 21:56:49 --> NoahvdAa (~NoahvdAa@user/noahvdaa) a rejoint #mcdevs 2022-08-30 21:56:49 --> clonejo1 (~clonejo@shakik3.shakik.de) a rejoint #mcdevs 2022-08-30 21:56:49 --> MisterVector (~Vector@47.151.222.161) a rejoint #mcdevs 2022-08-30 21:56:49 --> l4mRh4X0r (l4mRh4X0r@pomacium.student.ipv6.utwente.nl) a rejoint #mcdevs 2022-08-30 21:56:49 --> enimaloc (~enimaloc@29.ip-151-80-61.eu) a rejoint #mcdevs 2022-08-30 21:56:49 --> Techcable (~Techcable@user/Techcable) a rejoint #mcdevs 2022-08-30 21:56:49 --> camotoy (~camotoy@104-4-111-192.lightspeed.bcvloh.sbcglobal.net) a rejoint #mcdevs 2022-08-30 21:56:49 --> electronicboy (~electroni@atlas.valaria.pw) a rejoint #mcdevs 2022-08-30 21:56:49 --> stack08 (~StackDoub@45-29-51-69.lightspeed.cicril.sbcglobal.net) a rejoint #mcdevs 2022-08-30 21:56:49 --> dexter0 (~dexter0@c-69-181-125-164.hsd1.ca.comcast.net) a rejoint #mcdevs 2022-08-30 21:56:49 --> deltab (~deltab@user/deltab) a rejoint #mcdevs 2022-08-30 21:56:49 --> tny (~tny@accela.tny.town) a rejoint #mcdevs 2022-08-30 21:56:49 --> xtexChooser[m] (~xtexchoos@2001:470:69fc:105::2:4501) a rejoint #mcdevs 2022-08-30 21:56:49 --> bswartz (~bswartz@user/bswartz) a rejoint #mcdevs 2022-08-30 21:56:49 --> wanderer (~wanderer@user/wanderer) a rejoint #mcdevs 2022-08-30 21:56:49 --> Sainan (~Sainan@static.222.155.69.159.clients.your-server.de) a rejoint #mcdevs 2022-08-30 21:56:49 --> AgentK_ (~AgentK@user/agentk) a rejoint #mcdevs 2022-08-30 21:56:49 --> TkTech (~TkTech@modemcable053.208-22-96.mc.videotron.ca) a rejoint #mcdevs 2022-08-30 21:56:49 --> Amaranth (~travis@59.ip-158-69-219.net) a rejoint #mcdevs 2022-08-30 21:56:49 --> Rhys- (Rhys@help.lux.melted.me) a rejoint #mcdevs 2022-08-30 21:56:49 --> Fador (fador@hentai.fi) a rejoint #mcdevs 2022-08-30 21:56:49 --> ashka (~ashka@user/ashka) a rejoint #mcdevs 2022-08-30 21:56:49 --> Byteflux (~byte@byteflux.net) a rejoint #mcdevs 2022-08-30 21:56:49 --> Selicre (~x@hello.i.am.selic.re) a rejoint #mcdevs 2022-08-30 21:56:49 --> simon816 (~simon816@ec2-35-178-246-72.eu-west-2.compute.amazonaws.com) a rejoint #mcdevs 2022-08-30 21:56:49 --> high_ground (~high_grou@user/high-ground/x-5722129) a rejoint #mcdevs 2022-08-30 21:56:49 --> killme (~killmePI@ovh4.avatarmc.com) a rejoint #mcdevs 2022-08-30 21:56:49 --> _123DMWM (~123DMWM@me.123dmwm.com) a rejoint #mcdevs 2022-08-30 21:56:49 --> yosafbridge (~yosafbrid@static.38.6.217.95.clients.your-server.de) a rejoint #mcdevs 2022-08-30 21:56:49 --> bixilon (~bixilon@node-3.bixilon.de) a rejoint #mcdevs 2022-08-30 21:56:49 --> rymiel (~rymiel@arch-houju.rymiel.space) a rejoint #mcdevs 2022-08-30 21:56:49 --> pokechu22 (~pokechu22@user/pokechu22) a rejoint #mcdevs 2022-08-30 21:56:49 --> ammar2 (admin@i.diddled.with.the.opers.so.they.klined.me) a rejoint #mcdevs 2022-08-30 21:56:49 --> The_Red_Freak (~The_Red_F@user/The-Red-Freak/x-5541572) a rejoint #mcdevs 2022-08-30 21:56:49 --> grumble (grumble@user/grumble) a rejoint #mcdevs 2022-08-30 21:56:49 --> zml (zml@nasturtium.stellardrift.ca) a rejoint #mcdevs 2022-08-30 21:56:49 --> Dykam (Dykam@dykam.nl) a rejoint #mcdevs 2022-08-30 21:56:49 --> ChanServ (ChanServ@services.libera.chat) a rejoint #mcdevs 2022-08-30 21:56:49 -- Mode #mcdevs [+o ChanServ] par calcium.libera.chat 2022-08-30 21:56:51 --> rj00 (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-08-30 21:57:10 <-- haykam (~haykam@user/haykam) a quitté (Excess Flood) 2022-08-30 21:57:15 <-- rj00a (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Read error: Connection reset by peer) 2022-08-30 21:57:15 --> haykam (~haykam@user/haykam) a rejoint #mcdevs 2022-08-30 21:57:43 <-- Byteflux (~byte@byteflux.net) a quitté (Max SendQ exceeded) 2022-08-30 21:57:58 --> Byteflux (~byte@byteflux.net) a rejoint #mcdevs 2022-08-30 21:59:26 <-- chibill (~chibill@2001:470:69fc:105::5ce) a quitté (Ping timeout: 255 seconds) 2022-08-30 21:59:30 <-- xtexChooser[m] (~xtexchoos@2001:470:69fc:105::2:4501) a quitté (Ping timeout: 264 seconds) 2022-08-30 22:05:50 <-- ImNootingHere (~Thunderbi@99.80.14.109.rev.sfr.net) a quitté (Quit: ImNootingHere) 2022-08-30 22:34:23 --> wulfaz0 (~wulfaz0__@c-73-140-3-197.hsd1.wa.comcast.net) a rejoint #mcdevs 2022-08-30 22:41:04 <-- Etan (~Etan@144-234-178-143.ftth.glasoperator.nl) a quitté (Read error: Connection reset by peer) 2022-08-30 23:11:32 --> xtexChooser[m] (~xtexchoos@2001:470:69fc:105::2:4501) a rejoint #mcdevs 2022-08-31 00:22:18 <-- wulfaz0 (~wulfaz0__@c-73-140-3-197.hsd1.wa.comcast.net) a quitté (Ping timeout: 240 seconds) 2022-08-31 00:28:07 --> chibill (~chibill@2001:470:69fc:105::5ce) a rejoint #mcdevs 2022-08-31 00:59:30 --> wulfaz0 (~wulfaz0__@c-73-140-3-197.hsd1.wa.comcast.net) a rejoint #mcdevs 2022-08-31 01:26:27 <-- wulfaz0 (~wulfaz0__@c-73-140-3-197.hsd1.wa.comcast.net) a quitté (Read error: Connection reset by peer) 2022-08-31 02:47:24 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-31 06:14:13 -- figboot est maintenant connu sous le nom bigfoot547 2022-08-31 13:56:21 <-- rj00 (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 260 seconds) 2022-08-31 17:17:09 --> Etan (~Etan@144-234-178-143.ftth.glasoperator.nl) a rejoint #mcdevs 2022-08-31 18:48:38 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 255 seconds) 2022-08-31 21:12:45 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-08-31 22:25:01 <-- Etan (~Etan@144-234-178-143.ftth.glasoperator.nl) a quitté (Ping timeout: 260 seconds) 2022-08-31 23:24:31 <-- rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a quitté (Ping timeout: 260 seconds) 2022-08-31 23:41:56 <-- ckie (~ckie@user/cookie) a quitté (Quit: *poof*) 2022-08-31 23:42:15 --> ckie (~ckie@user/cookie) a rejoint #mcdevs 2022-09-01 01:16:37 --> rj00 (~rj00a@ip184-189-231-212.sb.sd.cox.net) a rejoint #mcdevs 2022-09-01 02:24:12 --> ZacSharp (~ZacSharp@user/zacsharp) a rejoint #mcdevs 2022-09-01 03:16:18 <-- ZacSharp (~ZacSharp@user/zacsharp) a quitté (Quit: ZacSharp) 2022-09-01 07:39:39 <-- AndrewPH (~Andrew@2606:db00:0:62e::b) a quitté (Ping timeout: 244 seconds) 2022-09-01 08:02:36 --> ImNootingHere (~Thunderbi@99.80.14.109.rev.sfr.net) a rejoint #mcdevs 2022-09-01 09:27:43 <-- Disconsented (~quassel@irc.disconsented.com) a quitté (Remote host closed the connection) 2022-09-01 09:28:52 --> Disconsented (~quassel@irc.disconsented.com) a rejoint #mcdevs 2022-09-01 11:35:13 --> rob9315 (~rob9315@p5488e7a4.dip0.t-ipconnect.de) a rejoint #mcdevs 2022-09-01 12:28:12 <-- ImNootingHere (~Thunderbi@99.80.14.109.rev.sfr.net) a quitté (Quit: ImNootingHere) 2022-09-01 14:48:29 <-- rj00 (~rj00a@ip184-189-231-212.sb.sd.cox.net) a quitté (Ping timeout: 252 seconds) 2022-09-01 16:45:29 --> AndrewPH (~Andrew@2606:db00:0:62e::b) a rejoint #mcdevs 2022-09-01 19:25:40 --> ImNootingHere (~Thunderbi@99.80.14.109.rev.sfr.net) a rejoint #mcdevs 2022-09-01 21:33:42 --> wulfaz0 (~wulfaz0__@c-73-140-3-197.hsd1.wa.comcast.net) a rejoint #mcdevs