2015-10-22 15:33:03 Fenhl for servers, that is :P 2015-10-22 15:33:04 barneygale not if you're writing a client 2015-10-22 15:33:06 barneygale yeah.. 2015-10-22 15:33:20 roblabla barneygale, I thought encryption was required for offline_mode too now ._. 2015-10-22 15:33:34 Digot im writing a server though 2015-10-22 15:33:43 barneygale roblabla, not in 1.8. I'm not sure about 1.9 2015-10-22 15:33:56 Digot is compressing and encrypting optional? 2015-10-22 15:33:58 rom1504 barneygale: yeah, but if you don't compress packets, you're going to have big problems with the chunks packets (I did that mistake :D) 2015-10-22 15:34:06 Digot if im writing a server? 2015-10-22 15:34:10 roblabla Digot, as a server you can chose to completely ignore compression 2015-10-22 15:34:23 Digot but encryption? 2015-10-22 15:34:34 barneygale Digot, if you want to authenticate clients, you need to implement encryption 2015-10-22 15:34:38 roblabla If you just want offline mode, then encryption is optional too apparently, didn't know that 2015-10-22 15:34:41 Digot damn 2015-10-22 15:34:44 rom1504 (sending the chunk packet uncompressed is a few MB, that can take some time) 2015-10-22 15:34:49 roblabla Digot, tbh encryption is really easy 2015-10-22 15:34:56 roblabla C# takes care of most of it for you 2015-10-22 15:34:59 Digot ok i'm waiting for the c# code xd 2015-10-22 15:35:37 Fenhl roblabla: For unauthenticated and localhost connections (either of the two conditions is enough for an unencrypted connection) there is no encryption. In that case Login Start is directly followed by Login Success. 2015-10-22 15:35:45 Fenhl from the stable protocol docs 2015-10-22 15:37:31 rom1504 we might want to implement that in nmp hmm hmm 2015-10-22 15:38:03 roblabla rom1504, yeah probably 2015-10-22 15:38:34 rom1504 ah it's already there for clients https://github.com/PrismarineJS/node-minecraft-protocol/blob/c55865ef33bc6ba871364a5beddf1c6f091544f8/src/createClient.js#L50 2015-10-22 15:38:58 rom1504 if the server doesn't send the encryption begin packet, we don't start the encryption thing 2015-10-22 15:39:27 Digot But for the server ping i dont need encryption right? :D 2015-10-22 15:39:32 roblabla rom1504, nmp's createClient doesn't enforce encryption nor compression, contrary to the nmp client ^^ 2015-10-22 15:39:51 roblabla (E.G. if we receive a packet bigger than compression threshold uncompressed, we're ok with it) 2015-10-22 15:40:01 barneygale Digot, you don't need encryption for server ping, correct 2015-10-22 15:40:06 Digot ah okay 2015-10-22 15:40:09 Digot so i can start simple 2015-10-22 15:40:19 Digot this packet stuff is all new to me^^ 2015-10-22 15:40:47 rom1504 "contrary to the nmp client" : why ? the nmp client(.js) just provide the functionnality, it does nothing about compression and encryption by itself 2015-10-22 15:40:54 roblabla erm 2015-10-22 15:41:01 roblabla I meant contray to the notchian client 2015-10-22 15:41:13 rom1504 ah yeah ok 2015-10-22 15:41:16 roblabla and now letters be missing. 2015-10-22 15:42:00 rom1504 and it's actually implemented in createServer too https://github.com/PrismarineJS/node-minecraft-protocol/blob/a80765549c2cd23099319c450260ad8dffb3f954/src/createServer.js#L128 2015-10-22 15:42:31 roblabla rom1504, that's something else actually 2015-10-22 15:42:31 rom1504 onlineMode == false => no encryption_begin sent => no encryption 2015-10-22 15:42:38 roblabla oh yeah 2015-10-22 15:42:49 roblabla but we don't have the localhost one 2015-10-22 15:43:01 rom1504 ah yes 2015-10-22 15:43:27 roblabla And we really ought to remove isException. I don't think anyone uses it and it's an eyesore >.< 2015-10-22 15:43:31 Digot is only the server sending encrypted packets when in online mode? 2015-10-22 15:43:33 roblabla not to mention it's pretty broken since the UUID update 2015-10-22 15:43:34 Digot or the clienttoo? 2015-10-22 15:43:45 roblabla Digot, both 2015-10-22 15:46:43 <-- Extreme (extreme7@unaffiliated/extreme7) a quitté (Ping timeout: 240 seconds) 2015-10-22 16:39:48 <-- mindcat (~mindcat@113.90.72.106) a quitté (Ping timeout: 244 seconds) 2015-10-22 16:41:30 --> mindcat (~mindcat@113.118.169.38) a rejoint #mcdevs 2015-10-22 16:45:23 Aikar Grum, about the removeAll optimization - ran into some issues with pistons it seems. Does MC remove a tile entity instance then re-add it back ever? That was a logical flaw in the patch I sent you as it expects once removed to never re-add. So I redid my patch last night to handle that. Will resend once I'm comfortable that the changes are good, but so far no crash. 2015-10-22 16:45:55 Aikar or more importantly, no "omg my TE's are all messed up" 2015-10-22 16:45:56 +Grum the changes should be done against snapshots, its quite different now :( 2015-10-22 16:46:18 Aikar i'm not using snapshots for my prod servers :P 2015-10-22 16:46:37 Aikar but the latest revision is pretty simple unless youve gotten rid of the world list.... which would be a great idea! 2015-10-22 16:47:10 Aikar https://bitbucket.org/starlis/empirecraft/src/370547af8682aeea56abb83094725468be671e72/patches/craftbukkit/0117-Optimize-Entity-and-Tile-Entity-Removal.patch?at=master&fileviewer=file-view-default 2015-10-22 16:47:20 Aikar err 2015-10-22 16:47:23 Aikar i didnt push last night 2015-10-22 16:47:24 Aikar sec 2015-10-22 16:48:12 --> Extreme (extreme7@unaffiliated/extreme7) a rejoint #mcdevs 2015-10-22 16:49:03 Aikar https://bitbucket.org/starlis/empirecraft/src/75c5fcab741dc3221b92e1f5397d03b430534cd3/patches/craftbukkit/0116-Optimize-Entity-and-Tile-Entity-Removal.patch?at=master&fileviewer=file-view-default 2015-10-22 16:49:30 Aikar so for vanilla theres less diff, many of them were to get rid of cb/spigot tick position manipulation 2015-10-22 16:50:54 Aikar but extending arraylist to redefine .remove(Object), removeAll(), add(E), addAll(Collection) to change marker state. then add an extra .removeAll() after ticking to do post tick cleanup 2015-10-22 16:51:16 +Grum Yeah not quite so keen on that honestly 2015-10-22 16:51:26 +Grum i rather fracture the big array into smaller (per section) 2015-10-22 16:51:50 Aikar well as i mentioned to you before, ticking based on chunks and using the chunk list is a better idea overall 2015-10-22 16:51:57 Aikar as you then get better CPU cacheing 2015-10-22 16:52:41 AlphaBlend hey Grum, i'm looking at the update notes for 15w37a, and you guys added a biome for The Void, does this mean biomes aren't strictly 32x256x32 blocks in size anymore? 2015-10-22 16:53:04 +Grum AlphaBlend: i'm confused by that question, biomes have 'exact sizes' ? 2015-10-22 16:53:06 Aikar http://timings.aikar.co/dev/?id=b7d76b79ee6c4d488134025b09a333f5&all=1&start=1445524676&end=1445525450#25_1 heres latest timings (and for the others - ive done some good work on v2 ui you can see) 2015-10-22 16:53:15 Aikar you can see .removeAll pre and post are now super fast 2015-10-22 16:54:04 AlphaBlend well Grum, it was my understanding that a wall of chunks from floor to ceiling all had the same biome, correct me please :D 2015-10-22 16:54:10 Aikar post tile entity is still heavy, as many of the TE's are removed during the tick loop using that boolean on the tile entity 2015-10-22 16:54:20 Aikar but way faster than before 2015-10-22 16:54:27 +Grum a biome is a 2d map yes 2015-10-22 16:54:35 +Grum so its 1x256x1 big 2015-10-22 16:54:41 AlphaBlend oh i see 2015-10-22 16:54:47 <-- mindcat (~mindcat@113.118.169.38) a quitté (Ping timeout: 244 seconds) 2015-10-22 16:54:54 AlphaBlend this new The Void makes me think that it no longer has to be 256 blocks high 2015-10-22 16:56:10 AlphaBlend or was it never strictly 256 blocks in height, just nothing demanded anything lower than 256 blocks? 2015-10-22 16:56:52 --> mindcat (~mindcat@113.118.169.38) a rejoint #mcdevs 2015-10-22 16:58:17 --> Pyker_ (pyker@pyker.net) a rejoint #mcdevs 2015-10-22 16:58:33 --> gamingrobot_ (sid10990@gateway/web/irccloud.com/x-tgsjgioadnheqtum) a rejoint #mcdevs 2015-10-22 16:59:23 --> _123DontMessWitM (~123DMWM@2601:18d:101:f738:c550:bfd4:c716:fd89) a rejoint #mcdevs 2015-10-22 17:00:30 --> Dadido3_ (~quassel@pD9E187DA.dip0.t-ipconnect.de) a rejoint #mcdevs 2015-10-22 17:04:06 --> Brandon1- (~Brandon15@195-154-68-209.rev.poneytelecom.eu) a rejoint #mcdevs 2015-10-22 17:04:17 --> jamietech- (~jamietech@jamietech.jbouncer.jamiete.ch) a rejoint #mcdevs 2015-10-22 17:04:28 --> jython234[away] (~jython234@2607:5300:60:eb4::1) a rejoint #mcdevs 2015-10-22 17:04:28 -- jython234[away] est maintenant connu sous le nom Guest61193 2015-10-22 17:04:30 --> Brott (~brott@unaffiliated/brott) a rejoint #mcdevs 2015-10-22 17:04:31 --> Grum_ (~grum@irc.grum.nl) a rejoint #mcdevs 2015-10-22 17:04:31 -- Mode #mcdevs [+v Grum_] par ChanServ 2015-10-22 17:04:35 --> dav2d (~dav1d@2001:41d0:1:f6c4::1) a rejoint #mcdevs 2015-10-22 17:04:35 <-- dav2d (~dav1d@2001:41d0:1:f6c4::1) a quitté (Changing host) 2015-10-22 17:04:35 --> dav2d (~dav1d@unaffiliated/dav1d) a rejoint #mcdevs 2015-10-22 17:04:39 --> ashka` (~postmaste@5.9.122.82) a rejoint #mcdevs 2015-10-22 17:04:51 --> Byteflux_ (~Byteflux@2607:5300:60:7b5a::) a rejoint #mcdevs 2015-10-22 17:05:00 --> AndrewPH (Butts@omega.classicube.net) a rejoint #mcdevs 2015-10-22 17:05:00 -- Mode #mcdevs [+v AndrewPH] par ChanServ 2015-10-22 17:05:52 --> Tristit1a (~tristitia@178.18.241.185) a rejoint #mcdevs 2015-10-22 17:05:53 --> rubyrandom_ (~ruby@unaffiliated/rubyrandom) a rejoint #mcdevs 2015-10-22 17:07:12 <-- _123DMWM (~123DMWM@2601:18d:101:f738:c550:bfd4:c716:fd89) a quitté (*.net *.split) 2015-10-22 17:07:12 <-- rubyrandom (~ruby@unaffiliated/rubyrandom) a quitté (*.net *.split) 2015-10-22 17:07:13 <-- Dadido3 (~quassel@pD9E187DA.dip0.t-ipconnect.de) a quitté (*.net *.split) 2015-10-22 17:07:13 <-- Pyker (pyker@pyker.net) a quitté (*.net *.split) 2015-10-22 17:07:14 <-- angal (angal@elmo.stole-your.pw) a quitté (*.net *.split) 2015-10-22 17:07:14 <-- Byteflux (~Byteflux@2607:5300:60:7b5a::) a quitté (*.net *.split) 2015-10-22 17:07:14 <-- vemacs (~vemacs@unaffiliated/vemacs) a quitté (*.net *.split) 2015-10-22 17:07:14 <-- jamietech (~jamietech@jamietech.jbouncer.jamiete.ch) a quitté (*.net *.split) 2015-10-22 17:07:14 <-- Grum (~grum@irc.grum.nl) a quitté (*.net *.split) 2015-10-22 17:07:14 <-- TheUnnamedDude|b (~TheUnname@2001:41d0:1:68a3::37) a quitté (*.net *.split) 2015-10-22 17:07:14 <-- prplz (prplz@when.i.am.bored.i.buy.silly.domains) a quitté (*.net *.split) 2015-10-22 17:07:14 <-- AndrewPH_ (Butts@omega.classicube.net) a quitté (*.net *.split) 2015-10-22 17:07:14 <-- dav1d (~dav1d@unaffiliated/dav1d) a quitté (*.net *.split) 2015-10-22 17:07:14 <-- Brottweiler (~brott@unaffiliated/brott) a quitté (*.net *.split) 2015-10-22 17:07:14 <-- Guest42396 (~jython234@2607:5300:60:eb4::1) a quitté (*.net *.split) 2015-10-22 17:07:14 <-- gamingrobot (sid10990@gateway/web/irccloud.com/x-xkzustvziihsekxe) a quitté (*.net *.split) 2015-10-22 17:07:15 <-- Brandon15811_ (~Brandon15@2001:bc8:3111:200::) a quitté (*.net *.split) 2015-10-22 17:07:15 <-- Gjum (~Gjum@217.160.135.244) a quitté (*.net *.split) 2015-10-22 17:07:15 <-- ashka (~postmaste@pdpc/supporter/active/ashka) a quitté (*.net *.split) 2015-10-22 17:07:15 <-- Tristitia (~tristitia@178.18.241.185) a quitté (*.net *.split) 2015-10-22 17:07:15 -- rubyrandom_ est maintenant connu sous le nom rubyrandom 2015-10-22 17:07:16 -- Grum_ est maintenant connu sous le nom Grum 2015-10-22 17:07:17 -- Brandon1- est maintenant connu sous le nom Brandon15811_ 2015-10-22 17:07:21 --> prplz_ (prplz@when.i.am.bored.i.buy.silly.domains) a rejoint #mcdevs 2015-10-22 17:07:22 -- Pyker_ est maintenant connu sous le nom Pyker 2015-10-22 17:07:38 -- prplz_ est maintenant connu sous le nom prplz 2015-10-22 17:09:45 --> progwml6 (~progwml6@n2-163-223.dhcp.drexel.edu) a rejoint #mcdevs 2015-10-22 17:11:30 --> Gjum (~Gjum@217.160.135.244) a rejoint #mcdevs 2015-10-22 17:13:25 -- gamingrobot_ est maintenant connu sous le nom gamingrobot 2015-10-22 17:15:49 <-- mindcat (~mindcat@113.118.169.38) a quitté (Read error: Connection reset by peer) 2015-10-22 17:17:21 --> TheUnnamedDude (~TheUnname@2001:41d0:1:68a3::37) a rejoint #mcdevs 2015-10-22 17:20:24 --> mindcat (~mindcat@119.136.101.207) a rejoint #mcdevs 2015-10-22 17:22:54 -- Tristit1a est maintenant connu sous le nom Tristitia 2015-10-22 17:23:15 --> vemacs (~vemacs@unaffiliated/vemacs) a rejoint #mcdevs 2015-10-22 17:30:05 Fenhl AlphaBlend: the void as in the space below the world and The Void as in the biome are entirely separate concepts 2015-10-22 17:30:27 AlphaBlend i meant the biome The Void 2015-10-22 17:30:28 Fenhl the void does not have a biome, and The Void only generates in Superflat 2015-10-22 17:30:36 AlphaBlend oh 2015-10-22 17:30:45 AlphaBlend then i did get confused 2015-10-22 17:30:50 AlphaBlend that makes more sense 2015-10-22 17:31:32 --> angal (angal@elmo.stole-your.pw) a rejoint #mcdevs 2015-10-22 17:32:05 -- r04r est maintenant connu sous le nom zz_FractalDactyl 2015-10-22 17:32:10 -- zz_FractalDactyl est maintenant connu sous le nom r04r 2015-10-22 18:05:34 <-- mindcat (~mindcat@119.136.101.207) a quitté (Ping timeout: 244 seconds) 2015-10-22 18:19:32 -- Byteflux_ est maintenant connu sous le nom Byteflux 2015-10-22 18:22:53 <-- Digot (54708729@gateway/web/freenode/ip.84.112.135.41) a quitté (Quit: Page closed) 2015-10-22 18:42:49 --> RenegadeEagle (~RenegadeE@173-19-198-172.client.mchsi.com) a rejoint #mcdevs 2015-10-22 20:03:25 --> barneygale_ (~barneygal@2.216.59.104) a rejoint #mcdevs 2015-10-22 20:05:27 <-- UUID016 (~UUID00@85.10.46.170) a quitté (Quit: Nettalk6 - www.ntalk.de) 2015-10-22 20:05:52 --> UUID016 (~UUID00@85.10.46.170) a rejoint #mcdevs 2015-10-22 20:14:59 <-- RenegadeEagle (~RenegadeE@173-19-198-172.client.mchsi.com) a quitté (Quit: Nettalk6 - www.ntalk.de) 2015-10-22 20:54:48 --> realz (~realz@unaffiliated/realazthat) a rejoint #mcdevs 2015-10-22 20:57:01 realz hey fellas 2015-10-22 21:19:44 <-- barneygale (~barneygal@mail.thefoundry.co.uk) a quitté (Disconnected by services) 2015-10-22 21:19:46 -- barneygale_ est maintenant connu sous le nom barneygale 2015-10-22 21:20:11 --> barneygale_ (~barneygal@mail.thefoundry.co.uk) a rejoint #mcdevs 2015-10-22 21:34:34 <-- barneygale (~barneygal@2.216.59.104) a quitté (Remote host closed the connection) 2015-10-22 21:47:39 realz im looking for a library that can read mca or mcr files, for C or C++, that is not GPL'd 2015-10-22 21:47:43 realz any pointers? 2015-10-22 21:57:01 Gjum realz, what will you use it for? 2015-10-22 21:57:13 rom1504 why not GPL u_u 2015-10-22 21:58:40 realz Gjum: for a project that i want to be BSD 2015-10-22 21:59:23 rom1504 cuberite has apache licence, so that's not gpl 2015-10-22 21:59:29 rom1504 look at that maybe 2015-10-22 22:01:15 realz rom1504: thanks 2015-10-22 22:01:26 Gjum realz, I made a 2d worldmap renderer in c++ in 2014, might still work https://github.com/Gjum/NBT-Cpp 2015-10-22 22:01:46 Gjum it can read mca, no idea if its performant enough 2015-10-22 22:02:23 Gjum has no license atm (o.O) but I can make it bsd if you wanna use it 2015-10-22 22:04:23 rom1504 Gjum: is nbt and mca the same format ? 2015-10-22 22:04:44 Gjum mca is a collection of chunks, which are nbt 2015-10-22 22:04:52 <-- gurun (~gurun@c83-249-65-92.bredband.comhem.se) a quitté (Read error: Connection reset by peer) 2015-10-22 22:04:58 Gjum or do I confuse something 2015-10-22 22:05:48 --> _regiuz (~argh@p5DDA6629.dip0.t-ipconnect.de) a rejoint #mcdevs 2015-10-22 22:05:49 Gjum no, it's like I said http://minecraft.gamepedia.com/Region_file_format 2015-10-22 22:06:07 rom1504 ok 2015-10-22 22:08:41 realz Gjum: well, thanks :D, I'll take a look 2015-10-22 22:08:54 realz just got a bit busy atm, so i'll look in a few 2015-10-22 22:09:11 Gjum yup, just ping me here or open an issue 2015-10-22 22:20:50 <-- AlphaBlend (AlphaBlend@pool-173-58-37-184.lsanca.fios.verizon.net) a quitté (Ping timeout: 246 seconds) 2015-10-22 22:37:03 --> RenegadeEagle (~RenegadeE@173-19-198-172.client.mchsi.com) a rejoint #mcdevs 2015-10-22 22:56:11 <-- winny (20025@unaffiliated/winstonw) a quitté (Quit: WeeChat 1.0.1) 2015-10-22 23:21:13 --> williamtdr (uid27909@gateway/web/irccloud.com/x-jzqqmxavemjbwdhq) a rejoint #mcdevs 2015-10-22 23:24:16 <-- DiaLight (~DiaLight@ip212-109-15-145.sampo.ru) a quitté (Read error: Connection reset by peer) 2015-10-22 23:54:21 --> nickelpro (nick@the.one.and.only.nickelp.ro) a rejoint #mcdevs 2015-10-22 23:59:25 <-- UUID016 (~UUID00@85.10.46.170) a quitté (Ping timeout: 265 seconds) 2015-10-23 00:08:09 --> UUID016 (~UUID00@cpe-213-157-225-153.dynamic.amis.net) a rejoint #mcdevs 2015-10-23 00:23:48 -- umby24|offline est maintenant connu sous le nom umby24 2015-10-23 00:31:41 <-- UUID016 (~UUID00@cpe-213-157-225-153.dynamic.amis.net) a quitté (Read error: Connection reset by peer) 2015-10-23 00:44:21 --> Pangea (~Pangea@unaffiliated/pangea) a rejoint #mcdevs 2015-10-23 00:47:11 <-- benbaptist (~benbaptis@c-50-178-138-73.hsd1.in.comcast.net) a quitté (Ping timeout: 260 seconds) 2015-10-23 00:55:32 --> benbaptist (~benbaptis@c-50-178-138-73.hsd1.in.comcast.net) a rejoint #mcdevs 2015-10-23 01:02:15 <-- edk (~edk@spy/edk0) a quitté (Remote host closed the connection) 2015-10-23 01:31:38 --> edk (~edk@spy/edk0) a rejoint #mcdevs 2015-10-23 01:32:21 <-- edk (~edk@spy/edk0) a quitté (Remote host closed the connection) 2015-10-23 01:34:38 --> edk (~edk@spy/edk0) a rejoint #mcdevs 2015-10-23 01:48:18 realz Gjum: hey 2015-10-23 01:48:32 realz so how would one use it with mca 2015-10-23 01:50:17 Gjum Havent used it for a while, look at the world renderer, it uses pretty much everything in that repp 2015-10-23 01:50:23 Gjum repo 2015-10-23 01:53:13 Gjum realz: NBT::Tag * chunk = (new NBT::Tag)->loadFromChunk(worldpath, chunkx, chunkz); 2015-10-23 01:53:45 realz that just works? 2015-10-23 01:53:47 realz hmm 2015-10-23 01:53:48 realz nice 2015-10-23 01:53:55 realz Gjum: is there any file that lists all the chunks 2015-10-23 01:54:06 realz or do you need to do that yourself by listing the filenames 2015-10-23 01:57:08 Gjum Look at the region filenames I remember writing some code that searches all region files for populated chunks 2015-10-23 01:57:41 realz cool 2015-10-23 01:59:26 Gjum Remember, that is old code thar needs testing and a rewrite, but probably helping a lot to get started 2015-10-23 02:03:31 <-- bfoxwell (~Foxwell@c-76-110-182-132.hsd1.fl.comcast.net) a quitté (Read error: Connection reset by peer) 2015-10-23 02:04:27 --> bfoxwell (~Foxwell@c-76-110-182-132.hsd1.fl.comcast.net) a rejoint #mcdevs 2015-10-23 02:45:40 <-- _regiuz (~argh@p5DDA6629.dip0.t-ipconnect.de) a quitté (Ping timeout: 250 seconds) 2015-10-23 02:51:25 <-- Pangea (~Pangea@unaffiliated/pangea) a quitté (Ping timeout: 250 seconds) 2015-10-23 03:04:22 --> Pangea (~Pangea@unaffiliated/pangea) a rejoint #mcdevs 2015-10-23 03:14:49 <-- Pangea (~Pangea@unaffiliated/pangea) a quitté (Ping timeout: 250 seconds) 2015-10-23 03:16:34 --> arrrjt (~rjt@cpe-76-88-80-94.san.res.rr.com) a rejoint #mcdevs 2015-10-23 03:49:44 --> Pangea (~Pangea@unaffiliated/pangea) a rejoint #mcdevs 2015-10-23 04:49:13 -- umby24 est maintenant connu sous le nom umby24|offline 2015-10-23 04:52:24 -- r04r est maintenant connu sous le nom zz_r04r 2015-10-23 06:00:39 Aikar nudge nudge Grum - can you add a check for texture id to GameProfile.equals() on client >_> if you load 2 skulls for same player but with different texture ids, client uses the same cache for both :/ 2015-10-23 06:01:02 Aikar pretty sure i reported that to bugs 2015-10-23 06:04:31 Aikar https://bugs.mojang.com/browse/MC-91214 2015-10-23 06:04:54 Aikar guess I didnt, but it is now 2015-10-23 06:04:58 Aikar players bugging me about it :3 2015-10-23 06:07:21 --> gurun (~gurun@c83-249-65-92.bredband.comhem.se) a rejoint #mcdevs 2015-10-23 06:30:44 --> winny (20025@ninthfloor.org) a rejoint #mcdevs 2015-10-23 06:30:44 <-- winny (20025@ninthfloor.org) a quitté (Changing host) 2015-10-23 06:30:44 --> winny (20025@unaffiliated/winstonw) a rejoint #mcdevs 2015-10-23 06:45:54 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2015-10-23 06:48:31 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 260 seconds) 2015-10-23 06:48:31 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2015-10-23 06:59:43 <-- Pangea (~Pangea@unaffiliated/pangea) a quitté (Ping timeout: 250 seconds) 2015-10-23 07:05:10 <-- doop (~doop@colostomy.club) a quitté (Ping timeout: 255 seconds) 2015-10-23 07:07:48 --> doop (~doop@colostomy.club) a rejoint #mcdevs 2015-10-23 07:13:48 <-- kashike (kashike@unaffiliated/kashike) a quitté (Ping timeout: 264 seconds) 2015-10-23 07:17:43 --> kashike (kashike@unaffiliated/kashike) a rejoint #mcdevs 2015-10-23 07:48:08 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 250 seconds) 2015-10-23 08:37:21 <-- RenegadeEagle (~RenegadeE@173-19-198-172.client.mchsi.com) a quitté (Quit: Nettalk6 - www.ntalk.de) 2015-10-23 09:47:03 <-- arrrjt (~rjt@cpe-76-88-80-94.san.res.rr.com) a quitté (Remote host closed the connection) 2015-10-23 09:52:22 <-- bfoxwell (~Foxwell@c-76-110-182-132.hsd1.fl.comcast.net) a quitté (Ping timeout: 268 seconds) 2015-10-23 09:56:24 <-- winny (20025@unaffiliated/winstonw) a quitté (Ping timeout: 264 seconds) 2015-10-23 09:57:07 --> winny (20025@unaffiliated/winstonw) a rejoint #mcdevs 2015-10-23 10:53:18 rom15041 #vanillaSupport 2015-10-23 11:13:40 --> Jailout20001 (~Jailout20@unaffiliated/jailout2000) a rejoint #mcdevs 2015-10-23 11:17:04 <-- Jailout2000 (~Jailout20@unaffiliated/jailout2000) a quitté (Ping timeout: 265 seconds) 2015-10-23 11:20:56 <-- humerusj (~humerusj@unaffiliated/humerusj) a quitté (Ping timeout: 265 seconds) 2015-10-23 11:20:56 <-- Voltasalt (~Voltasalt@ske.pw) a quitté (Ping timeout: 265 seconds) 2015-10-23 11:22:36 --> humerusj (~humerusj@unaffiliated/humerusj) a rejoint #mcdevs 2015-10-23 11:23:01 --> Voltasalt (~Voltasalt@ske.pw) a rejoint #mcdevs 2015-10-23 11:30:17 --> UUID016 (~UUID00@cpe-213-157-225-207.dynamic.amis.net) a rejoint #mcdevs 2015-10-23 12:01:59 --> Brandon15811___ (uid13052@gateway/web/irccloud.com/x-oexkkufsbnxrpkjs) a rejoint #mcdevs 2015-10-23 12:02:36 --> deathrat_____ (sid14886@gateway/web/irccloud.com/x-ufjhzjgopfnewuku) a rejoint #mcdevs 2015-10-23 12:02:47 --> Pyker_ (pyker@pyker.net) a rejoint #mcdevs 2015-10-23 12:03:16 --> Frigolit_ (~frigolit@aisaka.frigolit.net) a rejoint #mcdevs 2015-10-23 12:03:19 --> rom1504_ (rom1504@rom1504.fr) a rejoint #mcdevs 2015-10-23 12:03:47 --> aet2505_ (~aet2505@45.55.237.47) a rejoint #mcdevs 2015-10-23 12:08:10 <-- Pyker (pyker@pyker.net) a quitté (*.net *.split) 2015-10-23 12:08:12 <-- Frigolit (~frigolit@aisaka.frigolit.net) a quitté (*.net *.split) 2015-10-23 12:08:13 <-- rom1504 (rom1504@rom1504.fr) a quitté (*.net *.split) 2015-10-23 12:08:13 <-- Not-2321 (~notifico@198.199.82.216) a quitté (*.net *.split) 2015-10-23 12:08:14 <-- deathrat____ (sid14886@gateway/web/irccloud.com/x-srogktwqmzkyksyb) a quitté (*.net *.split) 2015-10-23 12:08:15 <-- Brandon15811__ (uid13052@gateway/web/irccloud.com/x-geoyfrszbiwvirlf) a quitté (*.net *.split) 2015-10-23 12:08:15 <-- SupaHam (~SupaHam@2a03:b0c0:1:d0::29c:3001) a quitté (*.net *.split) 2015-10-23 12:08:15 <-- dx (~dx@unaffiliated/dxdx) a quitté (*.net *.split) 2015-10-23 12:08:16 <-- aet2505 (~aet2505@45.55.237.47) a quitté (*.net *.split) 2015-10-23 12:08:16 -- aet2505_ est maintenant connu sous le nom aet2505 2015-10-23 12:08:17 -- Pyker_ est maintenant connu sous le nom Pyker 2015-10-23 12:08:21 --> dx (~dx@unaffiliated/dxdx) a rejoint #mcdevs 2015-10-23 12:08:23 -- deathrat_____ est maintenant connu sous le nom deathrat____ 2015-10-23 12:08:40 -- Brandon15811___ est maintenant connu sous le nom Brandon15811__ 2015-10-23 12:13:40 --> SupaHam (~SupaHam@2a03:b0c0:1:d0::29c:3001) a rejoint #mcdevs 2015-10-23 12:14:58 <-- ashka` (~postmaste@5.9.122.82) a quitté (Quit: En fait, le BSDiste, c'est comme l'homme politique, tu lui dis de quoi t'as besoin, il t'explique comment t'en passer) 2015-10-23 12:16:24 --> ashka (~postmaste@pdpc/supporter/active/ashka) a rejoint #mcdevs 2015-10-23 12:29:39 <-- Amaranth (~travis@ubuntu/member/Amaranth) a quitté (Quit: So long!) 2015-10-23 13:44:19 --> Amaranth (~travis@ubuntu/member/Amaranth) a rejoint #mcdevs 2015-10-23 13:44:19 -- Mode #mcdevs [+v Amaranth] par ChanServ 2015-10-23 13:56:04 <-- ryan-c (~ryan@srv1.turboslow.net) a quitté (Quit: ZNC - http://znc.sourceforge.net) 2015-10-23 14:05:35 --> ryan-c (~ryan@srv1.turboslow.net) a rejoint #mcdevs 2015-10-23 14:55:05 <-- progwml6 (~progwml6@n2-163-223.dhcp.drexel.edu) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2015-10-23 15:14:51 --> progwml6 (~progwml6@n2-163-223.dhcp.drexel.edu) a rejoint #mcdevs 2015-10-23 15:21:13 <-- progwml6 (~progwml6@n2-163-223.dhcp.drexel.edu) a quitté (Ping timeout: 244 seconds) 2015-10-23 15:38:20 <-- williamtdr (uid27909@gateway/web/irccloud.com/x-jzqqmxavemjbwdhq) a quitté (Quit: Connection closed for inactivity) 2015-10-23 15:46:32 -- zz_r04r est maintenant connu sous le nom r04r 2015-10-23 16:54:04 --> progwml6 (~progwml6@n2-163-223.dhcp.drexel.edu) a rejoint #mcdevs 2015-10-23 16:58:13 --> onelann (3ce0ada5@gateway/web/freenode/ip.60.224.173.165) a rejoint #mcdevs 2015-10-23 17:04:47 onelann does anyone know what happened to the mc server implementation in golang called netherrack? 2015-10-23 17:11:23 rom1504_ https://github.com/skirmish/netherrack ? 2015-10-23 17:16:14 onelann oh huh, couldn't find it. thanks. 2015-10-23 17:22:53 <-- Extreme (extreme7@unaffiliated/extreme7) a quitté (Ping timeout: 246 seconds) 2015-10-23 17:31:32 --> Extreme (extreme7@unaffiliated/extreme7) a rejoint #mcdevs 2015-10-23 17:43:29 Fenhl another Minecraft server named after a type of stone? 2015-10-23 17:54:20 -- clonejo_ est maintenant connu sous le nom clonejo 2015-10-23 18:15:29 --> redstonehelper (~redstoneh@p579523DE.dip0.t-ipconnect.de) a rejoint #mcdevs 2015-10-23 18:15:29 <-- redstonehelper (~redstoneh@p579523DE.dip0.t-ipconnect.de) a quitté (Changing host) 2015-10-23 18:15:29 --> redstonehelper (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2015-10-23 18:41:46 <-- onelann (3ce0ada5@gateway/web/freenode/ip.60.224.173.165) a quitté (Quit: Page closed) 2015-10-23 19:16:25 --> RenegadeEagle (~RenegadeE@173-19-198-172.client.mchsi.com) a rejoint #mcdevs 2015-10-23 19:28:27 --> AlphaBlend (AlphaBlend@pool-173-58-38-132.lsanca.fios.verizon.net) a rejoint #mcdevs 2015-10-23 19:43:44 <-- progwml6 (~progwml6@n2-163-223.dhcp.drexel.edu) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2015-10-23 19:46:27 --> IceAP (~Ice@46.166.188.246) a rejoint #mcdevs 2015-10-23 20:01:38 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Read error: Connection reset by peer) 2015-10-23 20:01:39 --> redstonehelper (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2015-10-23 20:09:43 --> progwml6 (~progwml6@n2-163-223.dhcp.drexel.edu) a rejoint #mcdevs 2015-10-23 20:09:58 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 255 seconds) 2015-10-23 20:10:16 --> redstonehelper (~redstoneh@p579523DE.dip0.t-ipconnect.de) a rejoint #mcdevs 2015-10-23 20:10:16 <-- redstonehelper (~redstoneh@p579523DE.dip0.t-ipconnect.de) a quitté (Changing host) 2015-10-23 20:10:16 --> redstonehelper (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2015-10-23 20:12:40 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Read error: Connection reset by peer) 2015-10-23 20:12:45 --> redstonehelper_ (~redstoneh@p579523DE.dip0.t-ipconnect.de) a rejoint #mcdevs 2015-10-23 20:12:45 <-- redstonehelper_ (~redstoneh@p579523DE.dip0.t-ipconnect.de) a quitté (Changing host) 2015-10-23 20:12:45 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2015-10-23 20:16:50 <-- redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 240 seconds) 2015-10-23 20:32:04 --> redstonehelper (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2015-10-23 20:46:22 -- r04r est maintenant connu sous le nom DiggerNick 2015-10-23 20:51:06 <-- progwml6 (~progwml6@n2-163-223.dhcp.drexel.edu) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2015-10-23 20:51:51 -- DiggerNick est maintenant connu sous le nom r04r 2015-10-23 21:02:54 roblabla Fenhl, it's actually starting to get a bit hard to find a block name that doesn't have a corresponding minecraft project... 2015-10-23 21:03:07 roblabla quick mojang, release new blocks :P 2015-10-23 21:05:23 --> progwml6 (~progwml6@n2-163-223.dhcp.drexel.edu) a rejoint #mcdevs 2015-10-23 21:10:38 +Grum roblabla: fartblock! 2015-10-23 21:10:45 +Grum contains all your hopes and dreams 2015-10-23 21:14:46 Fenhl roblabla: just use minerals that aren't in Minecraft (yet) 2015-10-23 21:15:01 Fenhl like Hematite 2015-10-23 21:15:04 Fenhl problem solved 2015-10-23 21:15:18 Fenhl (don't actually use hematite, it's already a thing) 2015-10-23 21:38:58 <-- Extreme (extreme7@unaffiliated/extreme7) a quitté (Max SendQ exceeded) 2015-10-23 21:42:30 <-- oldmanmike (~oldmanmik@pool-108-52-159-169.phlapa.fios.verizon.net) a quitté (Remote host closed the connection) 2015-10-23 21:44:06 --> Extreme (extreme7@unaffiliated/extreme7) a rejoint #mcdevs 2015-10-23 22:12:57 Gjum no, it's the opposite: as there is a minecraft server impl called Hematite, there must also be a Hematite block in the game. 2015-10-23 22:19:55 <-- brandon__ (~brandon15@ip98-181-19-194.br.br.cox.net) a quitté (Quit: Leaving) 2015-10-23 22:21:12 Fenhl well maybe they'll add a hematite block once we have something usable 2015-10-23 22:24:53 Gjum they better not add it now, because it would make minecraft "not compile" :P 2015-10-23 23:00:51 <-- EvilJStoker (jstoker@unaffiliated/jstoker) a quitté (Remote host closed the connection) 2015-10-23 23:16:07 --> EvilJStoker (jstoker@unaffiliated/jstoker) a rejoint #mcdevs 2015-10-23 23:28:51 <-- EvilJStoker (jstoker@unaffiliated/jstoker) a quitté (Ping timeout: 268 seconds) 2015-10-23 23:31:38 --> EvilJStoker (jstoker@unaffiliated/jstoker) a rejoint #mcdevs 2015-10-23 23:50:27 -- rom1504_ est maintenant connu sous le nom rom1504 2015-10-24 00:12:45 --> bfoxwell (~Foxwell@c-76-110-182-132.hsd1.fl.comcast.net) a rejoint #mcdevs 2015-10-24 00:19:01 --> UUID017 (~UUID00@cpe-213-157-225-207.dynamic.amis.net) a rejoint #mcdevs 2015-10-24 00:20:07 <-- UUID016 (~UUID00@cpe-213-157-225-207.dynamic.amis.net) a quitté (Ping timeout: 272 seconds) 2015-10-24 00:47:55 --> barneygale (~barneygal@90.197.160.176) a rejoint #mcdevs 2015-10-24 00:58:50 <-- _123DontMessWitM (~123DMWM@2601:18d:101:f738:c550:bfd4:c716:fd89) a quitté (Read error: Connection reset by peer) 2015-10-24 00:59:15 --> _123DontMessWitM (~123DMWM@2601:18d:101:f738:60e4:e7a:3f19:9c76) a rejoint #mcdevs 2015-10-24 01:17:33 --> Pangea (~Pangea@unaffiliated/pangea) a rejoint #mcdevs 2015-10-24 01:20:38 <-- progwml6 (~progwml6@n2-163-223.dhcp.drexel.edu) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2015-10-24 01:42:56 -- umby24|offline est maintenant connu sous le nom umby24 2015-10-24 01:47:32 <-- Pangea (~Pangea@unaffiliated/pangea) a quitté (Ping timeout: 265 seconds) 2015-10-24 02:13:34 --> progwml6 (~progwml6@n2-163-223.dhcp.drexel.edu) a rejoint #mcdevs 2015-10-24 02:24:23 <-- IceAP (~Ice@46.166.188.246) a quitté (Ping timeout: 240 seconds) 2015-10-24 02:24:37 --> IceAP (~Ice@46.166.190.168) a rejoint #mcdevs 2015-10-24 02:30:40 <-- IceAP (~Ice@46.166.190.168) a quitté (Quit: Leaving) 2015-10-24 03:26:55 <-- barneygale (~barneygal@90.197.160.176) a quitté (Ping timeout: 255 seconds) 2015-10-24 03:37:02 --> UUID018 (~UUID00@cpe-213-157-225-207.dynamic.amis.net) a rejoint #mcdevs 2015-10-24 03:40:15 <-- UUID017 (~UUID00@cpe-213-157-225-207.dynamic.amis.net) a quitté (Ping timeout: 272 seconds) 2015-10-24 04:33:46 --> UUID019 (~UUID00@cpe-213-157-225-207.dynamic.amis.net) a rejoint #mcdevs 2015-10-24 04:35:03 <-- UUID018 (~UUID00@cpe-213-157-225-207.dynamic.amis.net) a quitté (Ping timeout: 260 seconds) 2015-10-24 04:35:27 -- r04r est maintenant connu sous le nom zz_r04r 2015-10-24 05:18:30 -- umby24 est maintenant connu sous le nom umby24|offline 2015-10-24 05:25:32 --> arrrjt (~rjt@cpe-76-88-80-94.san.res.rr.com) a rejoint #mcdevs 2015-10-24 05:44:37 --> Pangea (~Pangea@unaffiliated/pangea) a rejoint #mcdevs 2015-10-24 05:47:21 --> Harry5573 (~Harry5573@46.101.12.90) a rejoint #mcdevs 2015-10-24 06:06:09 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2015-10-24 06:06:38 <-- UUID019 (~UUID00@cpe-213-157-225-207.dynamic.amis.net) a quitté (Quit: Nettalk6 - www.ntalk.de) 2015-10-24 06:08:26 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 250 seconds) 2015-10-24 06:08:27 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2015-10-24 06:17:07 <-- Jailout20001 (~Jailout20@unaffiliated/jailout2000) a quitté (Read error: Connection reset by peer) 2015-10-24 07:55:17 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 244 seconds) 2015-10-24 08:21:56 <-- Pangea (~Pangea@unaffiliated/pangea) a quitté (Ping timeout: 265 seconds) 2015-10-24 08:54:43 <-- gurun (~gurun@c83-249-65-92.bredband.comhem.se) a quitté (Quit: Leaving) 2015-10-24 09:44:59 <-- TheUnnamedDude (~TheUnname@2001:41d0:1:68a3::37) a quitté (Ping timeout: 246 seconds) 2015-10-24 09:53:45 <-- RenegadeEagle (~RenegadeE@173-19-198-172.client.mchsi.com) a quitté (Quit: Nettalk6 - www.ntalk.de) 2015-10-24 10:32:52 <-- bfoxwell (~Foxwell@c-76-110-182-132.hsd1.fl.comcast.net) a quitté (Ping timeout: 244 seconds) 2015-10-24 11:03:38 <-- eeew (eeew@bnc3.dnaclan.eu) a quitté (Remote host closed the connection) 2015-10-24 11:04:30 --> eeew (eeew@bnc3.dnaclan.eu) a rejoint #mcdevs 2015-10-24 13:09:35 --> TheUnnamedDude (~TheUnname@2001:41d0:1:68a3::37) a rejoint #mcdevs 2015-10-24 13:26:21 --> UUID019 (~UUID00@cpe-213-157-225-207.dynamic.amis.net) a rejoint #mcdevs 2015-10-24 13:49:11 --> redstonehelper (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2015-10-24 13:59:17 -- zz_r04r est maintenant connu sous le nom r04r 2015-10-24 15:48:45 --> Danielh90 (~Danielh90@97-91-156-141.dhcp.stls.mo.charter.com) a rejoint #mcdevs 2015-10-24 15:56:49 --> gurun (~gurun@c83-249-65-92.bredband.comhem.se) a rejoint #mcdevs 2015-10-24 16:58:51 --> Pangea (~Pangea@unaffiliated/pangea) a rejoint #mcdevs 2015-10-24 17:17:34 Not-f7bb [SpockBot] nickelpro pushed 1 commit to master [+0/-0/±1] http://git.io/vWuhJ 2015-10-24 17:17:36 Not-f7bb [SpockBot] nickelpro a6d54d0 - Update .gitignore 2015-10-24 17:21:23 --> barneygale (~barneygal@90.197.160.176) a rejoint #mcdevs 2015-10-24 17:53:24 <-- progwml6 (~progwml6@n2-163-223.dhcp.drexel.edu) a quitté (Quit: Textual IRC Client: www.textualapp.com) 2015-10-24 17:53:48 --> progwml6 (~progwml6@n2-163-223.dhcp.drexel.edu) a rejoint #mcdevs 2015-10-24 18:14:27 <-- progwml6 (~progwml6@n2-163-223.dhcp.drexel.edu) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2015-10-24 18:27:55 --> Cxom (~Trinoxtio@2601:248:4200:4876:a050:1b70:5949:a2a0) a rejoint #mcdevs 2015-10-24 18:29:51 --> progwml6 (~progwml6@n2-163-223.dhcp.drexel.edu) a rejoint #mcdevs 2015-10-24 18:31:21 <-- roblabla (~ident@2001:41d0:1:e1ff:225:90ff:fe27:c784) a quitté (Remote host closed the connection) 2015-10-24 18:37:00 --> BizarreCake (~BizarreCa@85.65.93.87.dynamic.barak-online.net) a rejoint #mcdevs 2015-10-24 18:44:44 --> roblabla (~ident@2001:41d0:1:e1ff:225:90ff:fe27:c784) a rejoint #mcdevs 2015-10-24 18:51:15 <-- Pangea (~Pangea@unaffiliated/pangea) a quitté (Ping timeout: 265 seconds) 2015-10-24 19:00:09 <-- barneygale (~barneygal@90.197.160.176) a quitté (Remote host closed the connection) 2015-10-24 19:25:11 --> RenegadeEagle (~RenegadeE@173-19-198-172.client.mchsi.com) a rejoint #mcdevs 2015-10-24 19:25:55 --> Pangea (~Pangea@unaffiliated/pangea) a rejoint #mcdevs 2015-10-24 19:38:28 <-- roblabla (~ident@2001:41d0:1:e1ff:225:90ff:fe27:c784) a quitté (Ping timeout: 250 seconds) 2015-10-24 19:41:39 --> bfoxwell (~Foxwell@c-76-110-182-132.hsd1.fl.comcast.net) a rejoint #mcdevs 2015-10-24 20:00:51 <-- Pangea (~Pangea@unaffiliated/pangea) a quitté (Ping timeout: 265 seconds) 2015-10-24 20:09:30 BizarreCake 'ello 2015-10-24 20:09:50 BizarreCake I'm having trouble spawning other players, even though I'm sending a player list item packet. 2015-10-24 20:09:57 BizarreCake Anyone have any idea what might be the cause? 2015-10-24 20:10:49 BizarreCake the players aren't being spawned at all 2015-10-24 20:12:44 --> Pangea (~Pangea@unaffiliated/pangea) a rejoint #mcdevs 2015-10-24 20:14:39 --> roblabla (~ident@2001:41d0:1:e1ff:225:90ff:fe27:c784) a rejoint #mcdevs 2015-10-24 20:36:31 <-- arrrjt (~rjt@cpe-76-88-80-94.san.res.rr.com) a quitté (Quit: Leaving) 2015-10-24 20:36:35 +XorBoole does anyone know if hitting escape in the downloading-resource-pack screen kills the download? 2015-10-24 20:45:34 rom1504 BizarreCake: do you send the named_entity_spawn packet ? 2015-10-24 20:46:06 rom1504 "Spawn Player" in wiki.vg names 2015-10-24 20:50:02 BizarreCake Yep, and it's the packet that appears to have no effect for some reason 2015-10-24 20:50:41 BizarreCake Maybe I'm setting properties wrong or something in the player list packet? 2015-10-24 20:51:03 BizarreCake In online mode, I'm sending the same properties I get form the authentication server, and in offline mode, I send no properties at all 2015-10-24 20:51:14 BizarreCake In both cases, players aren't being spawned. 2015-10-24 20:52:56 BizarreCake Although they appear in the player list itself, I noticed that the heads of the skins positioned to the left of the usernames isn't skinned (just a Steve head) even though I'm supposedly sending the skin data (in online mode). 2015-10-24 20:58:14 rom1504 BizarreCake: can you see anything in the list when pressing tab ? 2015-10-24 20:58:18 rom1504 ah 2015-10-24 20:58:46 rom1504 are you sending the positions correctly ? 2015-10-24 21:00:52 BizarreCake rom1504: I'm pretty sure I am, I'm aware the coordinates are sent as fixed point numbers. 2015-10-24 21:02:06 BizarreCake I've tried looking at other servers' code, to see how they're doing it, and so far I'm not finding any striking differences. 2015-10-24 21:02:11 BizarreCake which is why I'm confused :S 2015-10-24 21:04:54 rom1504 BizarreCake: are you handling the teleport packet ? (that needs to be sent when the client sent position is more than 32*4 away from the position the server last sent) 2015-10-24 21:08:40 ScruffyRules XorBoole, Can always test 2015-10-24 21:08:50 ScruffyRules Run a packet sniffer etc etc 2015-10-24 21:10:06 --> aGHz (uid10185@gateway/web/irccloud.com/x-wdtvmmbqrkvvzysw) a rejoint #mcdevs 2015-10-24 21:10:34 BizarreCake rom1504: The players I'm spawning are completely stationary, but I will try that. 2015-10-24 21:12:20 rom1504 might be stationnary, but is the client aware about that ? 2015-10-24 21:15:13 BizarreCake Alright, just tried that, still nothing. 2015-10-24 21:35:06 <-- Pangea (~Pangea@unaffiliated/pangea) a quitté (Ping timeout: 265 seconds) 2015-10-24 21:37:23 <-- roblabla (~ident@2001:41d0:1:e1ff:225:90ff:fe27:c784) a quitté (Ping timeout: 240 seconds) 2015-10-24 22:43:09 --> roblabla (~ident@2001:41d0:1:e1ff:225:90ff:fe27:c784) a rejoint #mcdevs 2015-10-24 22:48:30 <-- BizarreCake (~BizarreCa@85.65.93.87.dynamic.barak-online.net) a quitté (Quit: Leaving) 2015-10-24 23:00:44 -- r04r est maintenant connu sous le nom b3cky 2015-10-24 23:00:47 -- b3cky est maintenant connu sous le nom r04r 2015-10-24 23:30:08 <-- progwml6 (~progwml6@n2-163-223.dhcp.drexel.edu) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2015-10-24 23:58:32 --> progwml6 (~progwml6@n2-163-223.dhcp.drexel.edu) a rejoint #mcdevs 2015-10-25 00:08:52 <-- roblabla (~ident@2001:41d0:1:e1ff:225:90ff:fe27:c784) a quitté (Ping timeout: 250 seconds) 2015-10-25 00:10:24 --> roblabla (~ident@2001:41d0:1:e1ff:225:90ff:fe27:c784) a rejoint #mcdevs 2015-10-25 01:09:41 <-- angal (angal@elmo.stole-your.pw) a quitté (Ping timeout: 246 seconds) 2015-10-25 01:37:37 --> angal (angal@elmo.stole-your.pw) a rejoint #mcdevs 2015-10-25 01:41:43 <-- angal (angal@elmo.stole-your.pw) a quitté (Ping timeout: 240 seconds) 2015-10-25 02:38:23 --> angal (angal@elmo.stole-your.pw) a rejoint #mcdevs 2015-10-25 02:55:23 <-- gurun (~gurun@c83-249-65-92.bredband.comhem.se) a quitté (Ping timeout: 256 seconds) 2015-10-25 02:46:16 --> barneygale (~barneygal@90.197.160.176) a rejoint #mcdevs 2015-10-25 02:52:46 -- r04r est maintenant connu sous le nom zz_r04r 2015-10-25 03:45:13 <-- UUID019 (~UUID00@cpe-213-157-225-207.dynamic.amis.net) a quitté (Quit: Nettalk6 - www.ntalk.de) 2015-10-25 04:23:19 -- NickG365_ est maintenant connu sous le nom NickG365 2015-10-25 05:03:49 --> Pangea (~Pangea@unaffiliated/pangea) a rejoint #mcdevs 2015-10-25 05:33:42 <-- _123DontMessWitM (~123DMWM@2601:18d:101:f738:60e4:e7a:3f19:9c76) a quitté (Read error: Connection reset by peer) 2015-10-25 05:34:10 --> _123DontMessWitM (~123DMWM@2601:18d:101:f738:60e4:e7a:3f19:9c76) a rejoint #mcdevs 2015-10-25 06:34:03 <-- barneygale (~barneygal@90.197.160.176) a quitté (Ping timeout: 260 seconds) 2015-10-25 06:51:19 --> redstonehelper_ (~redstoneh@p579529DF.dip0.t-ipconnect.de) a rejoint #mcdevs 2015-10-25 06:51:19 <-- redstonehelper_ (~redstoneh@p579529DF.dip0.t-ipconnect.de) a quitté (Changing host) 2015-10-25 06:51:19 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2015-10-25 06:53:31 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 260 seconds) 2015-10-25 06:53:31 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2015-10-25 06:54:16 --> Egoscio (~textual@cpe-76-91-238-164.socal.res.rr.com) a rejoint #mcdevs 2015-10-25 07:00:44 Egoscio Hello there fellow mcdevs! Just out of curiosity, I wanted to know what are your opinions on when 1.9 will finally be released? 2015-10-25 07:23:28 <-- Extreme (extreme7@unaffiliated/extreme7) a quitté (Ping timeout: 255 seconds) 2015-10-25 07:28:30 --> Extreme (extreme7@unaffiliated/extreme7) a rejoint #mcdevs 2015-10-25 07:37:38 <-- roblabla (~ident@2001:41d0:1:e1ff:225:90ff:fe27:c784) a quitté (Ping timeout: 268 seconds) 2015-10-25 07:49:39 +Grum Egoscio: after we do pre-releases 2015-10-25 07:53:39 Egoscio Oh, okay. And MCP Will be released shortly after? I'm kind of new to the developer community so I'm not quite familiar with the development cycle. 2015-10-25 07:53:56 +Grum MCP will update after yes, unknown how long that will take 2015-10-25 07:54:57 +Grum but it is mostly forge's tooling that will matter 2015-10-25 07:58:49 <-- RenegadeEagle (~RenegadeE@173-19-198-172.client.mchsi.com) a quitté (Read error: Connection reset by peer) 2015-10-25 08:13:31 <-- Pangea (~Pangea@unaffiliated/pangea) a quitté (Ping timeout: 265 seconds) 2015-10-25 08:17:39 --> gurun (~gurun@c83-249-65-92.bredband.comhem.se) a rejoint #mcdevs 2015-10-25 08:54:07 <-- Extreme (extreme7@unaffiliated/extreme7) a quitté (Ping timeout: 272 seconds) 2015-10-25 08:59:10 --> Extreme (extreme7@unaffiliated/extreme7) a rejoint #mcdevs 2015-10-25 09:23:41 -- Frigolit_ est maintenant connu sous le nom Frigolit 2015-10-25 09:25:30 <-- Prf_Jakob (jakob@void-network.org) a quitté (Quit: Spoon!) 2015-10-25 09:32:48 --> Prf_Jakob (jakob@void-network.org) a rejoint #mcdevs 2015-10-25 09:33:55 --> Jailout2000 (~Jailout20@cpe-76-185-112-148.tx.res.rr.com) a rejoint #mcdevs 2015-10-25 09:33:57 <-- Jailout2000 (~Jailout20@cpe-76-185-112-148.tx.res.rr.com) a quitté (Changing host) 2015-10-25 09:33:57 --> Jailout2000 (~Jailout20@unaffiliated/jailout2000) a rejoint #mcdevs 2015-10-25 09:34:38 <-- Prf_Jakob (jakob@void-network.org) a quitté (Client Quit) 2015-10-25 10:17:06 --> Prf_Jakob (jakob@void-network.org) a rejoint #mcdevs 2015-10-25 10:17:06 -- Mode #mcdevs [+v Prf_Jakob] par ChanServ 2015-10-25 10:45:02 <-- Amaranth (~travis@ubuntu/member/Amaranth) a quitté (Quit: So long!) 2015-10-25 10:59:10 <-- Egoscio (~textual@cpe-76-91-238-164.socal.res.rr.com) a quitté (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-10-25 10:59:48 <-- aGHz (uid10185@gateway/web/irccloud.com/x-wdtvmmbqrkvvzysw) a quitté (Quit: Connection closed for inactivity) 2015-10-25 11:03:34 --> Amaranth (~travis@ubuntu/member/Amaranth) a rejoint #mcdevs 2015-10-25 11:03:34 -- Mode #mcdevs [+v Amaranth] par ChanServ 2015-10-25 11:47:51 --> UUID019 (~UUID00@cpe-213-157-225-207.dynamic.amis.net) a rejoint #mcdevs 2015-10-25 12:04:33 <-- UUID019 (~UUID00@cpe-213-157-225-207.dynamic.amis.net) a quitté (Ping timeout: 265 seconds) 2015-10-25 12:05:21 --> UUID019 (~UUID00@85.10.46.170) a rejoint #mcdevs 2015-10-25 12:10:46 --> UUID0110 (~UUID00@cpe-90-157-134-119.dynamic.amis.net) a rejoint #mcdevs 2015-10-25 12:11:55 <-- UUID019 (~UUID00@85.10.46.170) a quitté (Ping timeout: 240 seconds) 2015-10-25 12:14:11 --> UUID0111 (~UUID00@cpe-212-18-59-210.dynamic.amis.net) a rejoint #mcdevs 2015-10-25 12:15:11 <-- UUID0110 (~UUID00@cpe-90-157-134-119.dynamic.amis.net) a quitté (Ping timeout: 260 seconds) 2015-10-25 12:19:03 <-- UUID0111 (~UUID00@cpe-212-18-59-210.dynamic.amis.net) a quitté (Ping timeout: 265 seconds) 2015-10-25 12:21:41 --> UUID0111 (~UUID00@cpe-212-18-59-210.dynamic.amis.net) a rejoint #mcdevs 2015-10-25 12:31:30 <-- UUID0111 (~UUID00@cpe-212-18-59-210.dynamic.amis.net) a quitté (Ping timeout: 240 seconds) 2015-10-25 12:40:33 --> UUID0111 (~UUID00@cpe-212-18-59-210.dynamic.amis.net) a rejoint #mcdevs 2015-10-25 12:54:22 --> UUID0112 (~UUID00@cpe-212-18-59-210.dynamic.amis.net) a rejoint #mcdevs 2015-10-25 12:55:10 <-- UUID0111 (~UUID00@cpe-212-18-59-210.dynamic.amis.net) a quitté (Ping timeout: 240 seconds) 2015-10-25 12:57:36 --> gurun_ (~gurun@c83-249-65-92.bredband.comhem.se) a rejoint #mcdevs 2015-10-25 12:58:29 --> UUID0113 (~UUID00@85.10.46.147) a rejoint #mcdevs 2015-10-25 12:58:30 <-- UUID0112 (~UUID00@cpe-212-18-59-210.dynamic.amis.net) a quitté (Ping timeout: 240 seconds) 2015-10-25 12:58:53 -- zz_r04r est maintenant connu sous le nom r04r 2015-10-25 13:00:45 <-- gurun (~gurun@c83-249-65-92.bredband.comhem.se) a quitté (Ping timeout: 250 seconds) 2015-10-25 13:02:14 --> UUID0114 (~UUID00@85.10.46.68) a rejoint #mcdevs 2015-10-25 13:02:50 <-- UUID0113 (~UUID00@85.10.46.147) a quitté (Ping timeout: 240 seconds) 2015-10-25 13:08:56 --> UUID0115 (~UUID00@85.10.46.68) a rejoint #mcdevs 2015-10-25 13:11:39 <-- UUID0114 (~UUID00@85.10.46.68) a quitté (Ping timeout: 260 seconds) 2015-10-25 14:32:00 <-- Danielh90 (~Danielh90@97-91-156-141.dhcp.stls.mo.charter.com) a quitté (Ping timeout: 252 seconds) 2015-10-25 14:33:20 --> Danielh90 (~Danielh90@97-91-156-141.dhcp.stls.mo.charter.com) a rejoint #mcdevs 2015-10-25 14:50:04 <-- Kaybass (~Kaybass@185.21.216.148) a quitté (Ping timeout: 244 seconds) 2015-10-25 14:51:06 --> Kaybass (~Kaybass@185.21.216.148) a rejoint #mcdevs 2015-10-25 16:27:08 --> UUID0116 (~UUID00@85.10.46.68) a rejoint #mcdevs 2015-10-25 16:28:35 <-- UUID0115 (~UUID00@85.10.46.68) a quitté (Ping timeout: 268 seconds) 2015-10-25 16:55:48 <-- UUID0116 (~UUID00@85.10.46.68) a quitté (Ping timeout: 264 seconds) 2015-10-25 18:11:50 --> DiaLight (~DiaLight@ip212-109-15-145.sampo.ru) a rejoint #mcdevs 2015-10-25 18:34:05 --> Pangea (~Pangea@unaffiliated/pangea) a rejoint #mcdevs 2015-10-25 18:46:47 --> Egoscio (~textual@cpe-76-91-238-164.socal.res.rr.com) a rejoint #mcdevs 2015-10-25 18:53:24 --> barneygale (~barneygal@176.250.250.105) a rejoint #mcdevs 2015-10-25 18:58:00 <-- Egoscio (~textual@cpe-76-91-238-164.socal.res.rr.com) a quitté (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-10-25 19:56:32 <-- barneygale (~barneygal@176.250.250.105) a quitté (Remote host closed the connection) 2015-10-25 20:05:05 --> UUID0116 (~UUID00@85.10.46.68) a rejoint #mcdevs 2015-10-25 20:13:44 --> Snoutmol (~Maximilia@97-82-128-73.dhcp.hckr.nc.charter.com) a rejoint #mcdevs 2015-10-25 20:15:32 <-- Snoutmol (~Maximilia@97-82-128-73.dhcp.hckr.nc.charter.com) a quitté #mcdevs 2015-10-25 20:19:26 --> Egoscio (~textual@cpe-76-91-238-164.socal.res.rr.com) a rejoint #mcdevs 2015-10-25 20:46:03 <-- DiaLight (~DiaLight@ip212-109-15-145.sampo.ru) a quitté (Ping timeout: 244 seconds) 2015-10-25 20:47:52 <-- Egoscio (~textual@cpe-76-91-238-164.socal.res.rr.com) a quitté (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-10-25 20:50:20 <-- Danielh90 (~Danielh90@97-91-156-141.dhcp.stls.mo.charter.com) a quitté (Quit: Leaving) 2015-10-25 20:52:35 --> Danielh90 (~Danielh90@97-91-156-141.dhcp.stls.mo.charter.com) a rejoint #mcdevs 2015-10-25 21:27:22 <-- progwml6 (~progwml6@n2-163-223.dhcp.drexel.edu) a quitté (Quit: Textual IRC Client: www.textualapp.com) 2015-10-25 21:28:28 --> progwml6 (~progwml6@n2-163-223.dhcp.drexel.edu) a rejoint #mcdevs 2015-10-25 21:29:02 <-- progwml6 (~progwml6@n2-163-223.dhcp.drexel.edu) a quitté (Client Quit) 2015-10-25 21:29:52 --> progwml6 (~progwml6@n2-163-223.dhcp.drexel.edu) a rejoint #mcdevs 2015-10-25 21:44:26 --> arrrjt (~rjt@cpe-76-88-80-94.san.res.rr.com) a rejoint #mcdevs 2015-10-25 21:58:03 --> BizarreCake (~BizarreCa@85.65.93.87.dynamic.barak-online.net) a rejoint #mcdevs 2015-10-25 22:35:35 <-- Kaybass (~Kaybass@185.21.216.148) a quitté (Ping timeout: 244 seconds) 2015-10-25 22:36:32 --> Kaybass (~Kaybass@185.21.216.148) a rejoint #mcdevs 2015-10-25 22:46:13 --> RenegadeEagle (~RenegadeE@173-19-198-172.client.mchsi.com) a rejoint #mcdevs 2015-10-25 23:01:53 <-- Pangea (~Pangea@unaffiliated/pangea) a quitté (Ping timeout: 265 seconds) 2015-10-25 23:05:12 --> barneygale (~barneygal@176.250.250.105) a rejoint #mcdevs 2015-10-25 23:11:16 barneygale Does anyone know what sort of nbt data can be sent via the Slot data type? So far I've seen enchantments and display name, anything else? 2015-10-25 23:11:35 --> Egoscio (~textual@cpe-76-91-238-164.socal.res.rr.com) a rejoint #mcdevs 2015-10-25 23:11:56 ScruffyRules Probably lore 2015-10-25 23:12:00 * ScruffyRules knows nothing 2015-10-25 23:12:14 Gjum pretty much anything custom of that item 2015-10-25 23:12:21 Gjum attack modifiers for ex 2015-10-25 23:13:06 barneygale OK, thanks 2015-10-25 23:13:46 barneygale Another q: is for the format for plaintext data tags (e.g. as used in /give) documented anywhere? I guess it has a mapping with NBT 2015-10-25 23:13:47 Gjum also chests with items in them 2015-10-25 23:13:56 Gjum i.e. middle-click on a chest with chests 2015-10-25 23:14:09 barneygale ahh right 2015-10-25 23:15:41 Gjum barneygale, probably here http://minecraft.gamepedia.com/Chunk_format 2015-10-25 23:22:04 <-- BizarreCake (~BizarreCa@85.65.93.87.dynamic.barak-online.net) a quitté (Remote host closed the connection) 2015-10-25 23:44:25 Not-f7bb [GitHub] Responsive is better than fast. 2015-10-25 23:44:54 ScruffyRules Sure? 2015-10-25 23:45:51 rom1504 barneygale: mojangson ? 2015-10-25 23:57:43 <-- barneygale (~barneygal@176.250.250.105) a quitté (Remote host closed the connection) 2015-10-25 23:59:02 Not-f7bb [flying-squid] rom1504 pushed 1 commit to master [+0/-0/±3] http://git.io/vWVd5 2015-10-25 23:59:03 Not-f7bb [flying-squid] rom1504 69819b8 - proper /changeworld overworld|nether command implemented 2015-10-26 00:25:55 <-- UUID0116 (~UUID00@85.10.46.68) a quitté (Quit: Nettalk6 - www.ntalk.de) 2015-10-26 00:47:31 <-- gurun_ (~gurun@c83-249-65-92.bredband.comhem.se) a quitté (Ping timeout: 250 seconds) 2015-10-26 00:51:09 <-- Egoscio (~textual@cpe-76-91-238-164.socal.res.rr.com) a quitté (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-10-26 00:56:27 --> Egoscio (~textual@cpe-76-91-238-164.socal.res.rr.com) a rejoint #mcdevs 2015-10-26 01:15:54 Not-f7bb [flying-squid] rom1504 pushed 1 commit to master [+0/-0/±21] http://git.io/vWwfk 2015-10-26 01:15:56 Not-f7bb [flying-squid] rom1504 a506429 - use more es6 arrow function, and directly define the player.f functions instead of defining the function then assigning it 2015-10-26 01:25:14 --> Pangea (~Pangea@unaffiliated/pangea) a rejoint #mcdevs 2015-10-26 01:52:52 -- r04r est maintenant connu sous le nom zz_r04r 2015-10-26 01:53:37 Not-f7bb [flying-squid] rom1504 pushed 1 commit to master [+0/-0/±27] http://git.io/vWwLm 2015-10-26 01:53:39 Not-f7bb [flying-squid] rom1504 1a58da9 - more es6 refactoring : use destructing and more arrow functions 2015-10-26 02:04:02 Not-f7bb [flying-squid] rom1504 pushed 1 commit to master [+0/-0/±1] http://git.io/vWwqO 2015-10-26 02:04:03 Not-f7bb [flying-squid] rom1504 53c2bc7 - use an es6 class for diamond_square generation 2015-10-26 02:11:49 <-- Danielh90 (~Danielh90@97-91-156-141.dhcp.stls.mo.charter.com) a quitté (Read error: Connection timed out) 2015-10-26 02:12:45 --> Danielh90 (~Danielh90@97-91-156-141.dhcp.stls.mo.charter.com) a rejoint #mcdevs 2015-10-26 02:19:05 <-- Pangea (~Pangea@unaffiliated/pangea) a quitté (Ping timeout: 265 seconds) 2015-10-26 02:28:36 Not-f7bb [flying-squid] rom1504 pushed 1 commit to master [+0/-0/±3] http://git.io/vWwOr 2015-10-26 02:28:37 Not-f7bb [flying-squid] rom1504 accb742 - add back server.setBlock 2015-10-26 02:33:17 <-- Egoscio (~textual@cpe-76-91-238-164.socal.res.rr.com) a quitté (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-10-26 02:40:55 Not-f7bb [flying-squid] rom1504 pushed 1 commit to master [+0/-0/±6] http://git.io/vWwG0 2015-10-26 02:40:56 Not-f7bb [flying-squid] rom1504 888fa21 - some more es6 arrows 2015-10-26 02:55:37 Not-f7bb [flying-squid] rom1504 pushed 1 commit to master [+0/-0/±1] http://git.io/vWwn9 2015-10-26 02:55:38 Not-f7bb [flying-squid] rom1504 733ca45 - use a class for MCServer 2015-10-26 03:00:07 Not-f7bb [flying-squid] rom1504 pushed 1 commit to master [+0/-0/±2] http://git.io/vWwcn 2015-10-26 03:00:08 Not-f7bb [flying-squid] rom1504 73a18ef - use an es6 class for the player 2015-10-26 03:01:05 --> Egoscio (~textual@cpe-76-91-238-164.socal.res.rr.com) a rejoint #mcdevs 2015-10-26 03:02:42 --> Pangea (~Pangea@unaffiliated/pangea) a rejoint #mcdevs 2015-10-26 03:10:45 Not-f7bb [flying-squid] rom1504 pushed 1 commit to master [+0/-0/±2] http://git.io/vWwCR 2015-10-26 03:10:47 Not-f7bb [flying-squid] rom1504 767a3bf - fix test 2015-10-26 03:12:44 <-- Egoscio (~textual@cpe-76-91-238-164.socal.res.rr.com) a quitté (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-10-26 03:17:37 --> Egoscio (~textual@cpe-76-91-238-164.socal.res.rr.com) a rejoint #mcdevs 2015-10-26 04:04:55 nickelpro barneygale: slots also hold page data for books, gamingrobot implemented that for SpockBot 2015-10-26 04:13:59 <-- bfoxwell (~Foxwell@c-76-110-182-132.hsd1.fl.comcast.net) a quitté (Remote host closed the connection) 2015-10-26 04:15:28 --> bfoxwell (~Foxwell@c-76-110-182-132.hsd1.fl.comcast.net) a rejoint #mcdevs 2015-10-26 04:18:59 <-- bfoxwell (~Foxwell@c-76-110-182-132.hsd1.fl.comcast.net) a quitté (Remote host closed the connection) 2015-10-26 04:19:40 --> bfoxwell (~Foxwell@c-76-110-182-132.hsd1.fl.comcast.net) a rejoint #mcdevs 2015-10-26 04:35:59 gamingrobot Page data, author and title 2015-10-26 04:42:26 <-- Egoscio (~textual@cpe-76-91-238-164.socal.res.rr.com) a quitté (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-10-26 05:10:18 <-- RenegadeEagle (~RenegadeE@173-19-198-172.client.mchsi.com) a quitté (Quit: Nettalk6 - www.ntalk.de) 2015-10-26 05:26:30 <-- Danielh90 (~Danielh90@97-91-156-141.dhcp.stls.mo.charter.com) a quitté (Ping timeout: 240 seconds) 2015-10-26 05:52:43 <-- Amaranth (~travis@ubuntu/member/Amaranth) a quitté (Ping timeout: 265 seconds) 2015-10-26 06:22:51 --> Egoscio (~textual@cpe-76-91-238-164.socal.res.rr.com) a rejoint #mcdevs 2015-10-26 06:36:01 <-- Egoscio (~textual@cpe-76-91-238-164.socal.res.rr.com) a quitté (Read error: Connection reset by peer) 2015-10-26 06:51:23 --> redstonehelper_ (~redstoneh@p4FCCEC2A.dip0.t-ipconnect.de) a rejoint #mcdevs 2015-10-26 06:51:23 <-- redstonehelper_ (~redstoneh@p4FCCEC2A.dip0.t-ipconnect.de) a quitté (Changing host) 2015-10-26 06:51:23 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2015-10-26 06:53:56 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 256 seconds) 2015-10-26 06:53:56 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2015-10-26 07:10:26 --> Flemmard`` (~flemmard@AStrasbourg-652-1-225-197.w86-235.abo.wanadoo.fr) a rejoint #mcdevs 2015-10-26 07:11:59 <-- Pangea (~Pangea@unaffiliated/pangea) a quitté (Ping timeout: 265 seconds) 2015-10-26 07:13:07 <-- Flemmard (~flemmard@unaffiliated/flemmard) a quitté (Ping timeout: 255 seconds) 2015-10-26 07:15:58 --> gurun_ (~gurun@c83-249-65-92.bredband.comhem.se) a rejoint #mcdevs 2015-10-26 07:43:57 <-- arrrjt (~rjt@cpe-76-88-80-94.san.res.rr.com) a quitté (Quit: Leaving) 2015-10-26 08:23:38 --> UUID0116 (~UUID00@cpe-213-157-225-153.dynamic.amis.net) a rejoint #mcdevs 2015-10-26 08:49:59 -- zz_r04r est maintenant connu sous le nom r04r 2015-10-26 08:53:46 --> Amaranth (~travis@ubuntu/member/Amaranth) a rejoint #mcdevs 2015-10-26 08:53:46 -- Mode #mcdevs [+v Amaranth] par ChanServ 2015-10-26 10:38:23 -- Prf_Jakob est maintenant connu sous le nom Jakob1 2015-10-26 10:38:24 -- Jakob1 est maintenant connu sous le nom Jakob2 2015-10-26 10:39:26 -- Jakob2 est maintenant connu sous le nom Prf_Jakob 2015-10-26 13:16:58 --> Danielh90 (~Danielh90@97-91-156-141.dhcp.stls.mo.charter.com) a rejoint #mcdevs 2015-10-26 13:56:48 --> DiaLight (~DiaLight@ip212-109-15-145.sampo.ru) a rejoint #mcdevs 2015-10-26 14:11:26 --> BizarreCake (~BizarreCa@85.65.93.87.dynamic.barak-online.net) a rejoint #mcdevs 2015-10-26 14:19:10 <-- BizarreCake (~BizarreCa@85.65.93.87.dynamic.barak-online.net) a quitté (Remote host closed the connection) 2015-10-26 14:42:10 <-- gurun_ (~gurun@c83-249-65-92.bredband.comhem.se) a quitté (Ping timeout: 252 seconds) 2015-10-26 15:05:31 <-- edk (~edk@spy/edk0) a quitté (Ping timeout: 240 seconds) 2015-10-26 15:11:34 --> edk (~edk@spy/edk0) a rejoint #mcdevs 2015-10-26 15:15:01 --> gurun (~gurun@c83-249-65-92.bredband.comhem.se) a rejoint #mcdevs 2015-10-26 15:38:13 <-- |Blaze| (~scott@184.70.189.74) a quitté (Quit: leaving) 2015-10-26 17:16:20 --> RenegadeEagle (~RenegadeE@173-19-198-172.client.mchsi.com) a rejoint #mcdevs 2015-10-26 17:33:13 --> UUID0117 (~UUID00@cpe-213-157-225-153.dynamic.amis.net) a rejoint #mcdevs 2015-10-26 17:33:46 <-- UUID0116 (~UUID00@cpe-213-157-225-153.dynamic.amis.net) a quitté (Ping timeout: 252 seconds) 2015-10-26 17:39:03 --> UUID0118 (~UUID00@85.10.46.68) a rejoint #mcdevs 2015-10-26 17:39:44 <-- UUID0117 (~UUID00@cpe-213-157-225-153.dynamic.amis.net) a quitté (Ping timeout: 240 seconds) 2015-10-26 17:42:19 --> UUID0119 (~UUID00@85.10.46.68) a rejoint #mcdevs 2015-10-26 17:43:15 <-- UUID0118 (~UUID00@85.10.46.68) a quitté (Ping timeout: 240 seconds) 2015-10-26 17:57:11 --> Cxom_ (~Trinoxtio@2601:248:4200:4876:a050:1b70:5949:a2a0) a rejoint #mcdevs 2015-10-26 17:58:11 --> _123DMWM (~123DMWM@2601:18d:101:f738:60e4:e7a:3f19:9c76) a rejoint #mcdevs 2015-10-26 18:00:04 <-- Cxom (~Trinoxtio@2601:248:4200:4876:a050:1b70:5949:a2a0) a quitté (Ping timeout: 240 seconds) 2015-10-26 18:00:24 <-- _123DontMessWitM (~123DMWM@2601:18d:101:f738:60e4:e7a:3f19:9c76) a quitté (Ping timeout: 240 seconds) 2015-10-26 18:31:41 <-- progwml6 (~progwml6@n2-163-223.dhcp.drexel.edu) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2015-10-26 18:31:50 Not-f7bb [flying-squid] rom1504 pushed 1 commit to master [+0/-1/±0] http://git.io/vW6Ov 2015-10-26 18:31:52 Not-f7bb [flying-squid] rom1504 ae0faf7 - delete doc/README.md 2015-10-26 18:34:22 Not-f7bb [flying-squid] rom1504 pushed 1 commit to master [+0/-0/±1] http://git.io/vW6OM 2015-10-26 18:34:23 Not-f7bb [flying-squid] rom1504 f0808b3 - Some things got done in the roadmap I wouldn't say other dimensions or world generation are finished, but basic functionality is there. 2015-10-26 18:56:07 --> progwml6 (~progwml6@n2-163-223.dhcp.drexel.edu) a rejoint #mcdevs 2015-10-26 19:38:27 realz Gjum: working so far 2015-10-26 19:38:34 realz nothing visible, but i see the data on the console 2015-10-26 19:45:31 <-- progwml6 (~progwml6@n2-163-223.dhcp.drexel.edu) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2015-10-26 19:48:27 --> _123DontMessWitM (~123DMWM@2601:18d:101:f738:60e4:e7a:3f19:9c76) a rejoint #mcdevs 2015-10-26 19:51:32 <-- _123DMWM (~123DMWM@2601:18d:101:f738:60e4:e7a:3f19:9c76) a quitté (Ping timeout: 246 seconds) 2015-10-26 19:55:02 -- _123DontMessWitM est maintenant connu sous le nom _123DMWM 2015-10-26 19:58:05 --> progwml6 (~progwml6@n2-163-223.dhcp.drexel.edu) a rejoint #mcdevs 2015-10-26 20:02:54 <-- unascribed (~aesen@everybody.do.the.net.split.unascribed.com) a quitté (Quit: Your warranty is now void.) 2015-10-26 20:48:11 realz Gjum: have some invalid types 2015-10-26 20:50:09 <-- progwml6 (~progwml6@n2-163-223.dhcp.drexel.edu) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2015-10-26 20:55:01 Gjum realz, I just added the bsd license. what types? 2015-10-26 21:01:42 <-- DiaLight (~DiaLight@ip212-109-15-145.sampo.ru) a quitté (Read error: Connection reset by peer) 2015-10-26 21:02:04 realz eh i just got an assert 2015-10-26 21:02:08 realz er rather 2015-10-26 21:02:16 realz an invalid memory read i think 2015-10-26 21:02:40 realz Gjum: these are the types: http://codepad.org/H4IRymPL 2015-10-26 21:04:52 realz i just enabled your debug mode, so I'll see if it prints anything interesting before the invalid read 2015-10-26 21:05:12 Gjum tbh I have no idea anymore what that code does :/ 2015-10-26 21:08:25 realz heh i'll take a look 2015-10-26 21:08:27 realz if i cant solve it 2015-10-26 21:09:04 realz i'll keep googling or try cuberite recommended by rom1504 2015-10-26 21:09:12 Gjum yea 2015-10-26 21:12:22 rom1504 https://github.com/cuberite/cuberite/blob/master/src/WorldStorage/FastNBT.cpp 2015-10-26 21:12:51 rom1504 but it's not independant as Gjum one so you'll probably have to copy it or something 2015-10-26 21:14:00 realz thanks rom1504 2015-10-26 21:14:16 realz also how to get the stream out of the region file 2015-10-26 21:14:24 realz for each chunk? 2015-10-26 21:14:28 realz ill figure that out 2015-10-26 21:15:17 realz its spelled out in Gjum's code 2015-10-26 21:16:51 rom1504 idk, I haven't used any of that, never done any minecraft thing in c++ ;) 2015-10-26 21:16:56 rom1504 I'm using https://github.com/maxogden/minecraft-region/blob/master/index.js 2015-10-26 21:17:35 rom1504 look at http://minecraft.gamepedia.com/Region_file_format 2015-10-26 21:21:18 Gjum it's really quite simple, just gotta get the indices right 2015-10-26 21:25:59 --> progwml6 (~progwml6@n2-163-223.dhcp.drexel.edu) a rejoint #mcdevs 2015-10-26 21:30:03 realz rom1504: thanks 2015-10-26 21:30:15 realz Gjum: yea im assuming that reference is what you have in the load function right here 2015-10-26 21:30:31 realz rom1504: i saw you are an overviewer contributor 2015-10-26 21:30:35 realz are you the author? 2015-10-26 21:31:55 realz eh maybe i misread 2015-10-26 21:32:36 realz yea nvm :D 2015-10-26 21:33:21 Not-f7bb [flying-squid] rom1504 pushed 1 commit to master [+0/-0/±7] http://git.io/vWiB9 2015-10-26 21:33:22 Not-f7bb [flying-squid] rom1504 81d6cca - add metadata when placing a block, progress on #9 2015-10-26 21:36:26 rom1504 no I didn't write that minecraft-region thing, that's part of voxeljs, I'm using it in https://github.com/PrismarineJS/prismarine-provider-anvil to load the world in flying-squid though 2015-10-26 21:40:36 Not-f7bb [flying-squid] rom1504 pushed 1 commit to master [+0/-0/±1] http://git.io/vWiuf 2015-10-26 21:40:37 Not-f7bb [flying-squid] rom1504 07b8eaf - update setBlock doc 2015-10-26 22:25:53 --> barneygale (~barneygal@176.25.18.157) a rejoint #mcdevs 2015-10-26 22:34:25 Not-f7bb [flying-squid] rom1504 pushed 1 commit to master [+0/-0/±5] http://git.io/vWiH2 2015-10-26 22:34:26 Not-f7bb [flying-squid] rom1504 20ff77b - listen on server 'connection' to listen to non-PLAY errors, try to fix #85 2015-10-26 22:43:59 <-- gurun (~gurun@c83-249-65-92.bredband.comhem.se) a quitté (Ping timeout: 272 seconds) 2015-10-26 22:54:30 --> Pangea (~Pangea@unaffiliated/pangea) a rejoint #mcdevs 2015-10-26 23:30:57 --> unascribed (~aesen@everybody.do.the.net.split.unascribed.com) a rejoint #mcdevs 2015-10-27 00:11:10 <-- UUID0119 (~UUID00@85.10.46.68) a quitté (Quit: Nettalk6 - www.ntalk.de) 2015-10-27 00:51:28 -- umby24|offline est maintenant connu sous le nom umby24 2015-10-27 01:15:48 <-- mbaxter (~mbax@mcblockit/staff/mbaxter) a quitté (Ping timeout: 268 seconds) 2015-10-27 01:15:57 --> mbaxter (~mbax@kitten.institute) a rejoint #mcdevs 2015-10-27 01:15:57 <-- mbaxter (~mbax@kitten.institute) a quitté (Changing host) 2015-10-27 01:15:57 --> mbaxter (~mbax@mcblockit/staff/mbaxter) a rejoint #mcdevs 2015-10-27 01:17:25 -- umby24 est maintenant connu sous le nom umby24|offline 2015-10-27 01:57:02 --> oldmanmike (~oldmanmik@pool-108-52-159-169.phlapa.fios.verizon.net) a rejoint #mcdevs 2015-10-27 02:10:22 -- r04r est maintenant connu sous le nom zz_r04r 2015-10-27 02:10:55 realz Gjum: unsigned char bufferCompressed[int(lengthCompressed*1.1)]; 2015-10-27 02:11:05 realz any clue why the *1.1 is there? 2015-10-27 02:12:04 realz also, for everyone in the channel's viewing pleasure, friend of mine found this GEM of a voxel rendering demo: 2015-10-27 02:12:05 realz https://www.youtube.com/watch?v=R2bEpvyy28g 2015-10-27 02:31:13 oldmanmike So, I'm working on a server and I'm currently writing the authentication step of the login phase. I have a question, what should my server send as a "verify token" in its Encryption Request packet? The Vanilla server seems to be using a 4 byte field for its verify token. 2015-10-27 02:32:24 <-- barneygale (~barneygal@176.25.18.157) a quitté (Ping timeout: 252 seconds) 2015-10-27 02:35:43 <-- Pangea (~Pangea@unaffiliated/pangea) a quitté (Quit: into the real world!) 2015-10-27 02:37:47 --> Pangea (~Pangea@unaffiliated/pangea) a rejoint #mcdevs 2015-10-27 02:50:07 rom1504 4 random bytes 2015-10-27 02:51:10 oldmanmike Got it, thanks! 2015-10-27 02:52:33 rom1504 what are you writing the server in ? 2015-10-27 02:53:10 oldmanmike Haskell 2015-10-27 02:53:36 rom1504 fun :) 2015-10-27 02:53:46 oldmanmike Hopefully :) 2015-10-27 02:55:28 rom1504 any repo yet ? 2015-10-27 02:57:06 oldmanmike Yeah, I've got WIP repo for it on Github right now. 2015-10-27 02:58:33 oldmanmike Given one can't even log onto the server yet, I'm not in a hurry to advertise its existance yet. I don't want to end up crying wolf for a project I can't carry through with. 2015-10-27 02:59:29 oldmanmike But what exists right now is located at https://github.com/oldmanmike/opensandbox 2015-10-27 03:03:10 -- umby24|offline est maintenant connu sous le nom umby24 2015-10-27 03:03:10 rom1504 okay, did you see https://github.com/nandor/hcraft btw ? It's the only other haskell+minecraft project there is afaik 2015-10-27 03:04:03 rom1504 it's a client 2015-10-27 03:04:13 rom1504 well I'm not even sure it does any network 2015-10-27 03:05:01 oldmanmike Yeah, I saw that one back in the day. 2015-10-27 03:05:18 oldmanmike I'm holding off on the clientside for now 2015-10-27 03:22:15 --> DemiPixel (62ead9d7@gateway/web/freenode/ip.98.234.217.215) a rejoint #mcdevs 2015-10-27 03:22:50 DemiPixel I was wondering why there is "Effect"? 2015-10-27 03:23:09 DemiPixel It looks like it has both sounds and particles but there's also packets "Particle" and "Sound Effect" 2015-10-27 03:25:18 DemiPixel So when is "Effect" used for audio/particles? (e.g. wiki.vg/Protocol says random.anvil_land is used in Effect even though the same string can be used in Sound Effect?) 2015-10-27 03:38:30 rom1504 DemiPixel: what you could do is put a mineflayer bot on a vanilla server and have it display these packets in the console, and do stuff around the bot to see which packets he got 2015-10-27 03:58:52 DemiPixel rom1504: I suppose, it's just weird that it can send the same sound through two different packets... 2015-10-27 04:21:15 --> gurun (~gurun@c83-249-65-92.bredband.comhem.se) a rejoint #mcdevs 2015-10-27 05:02:43 -- umby24 est maintenant connu sous le nom umby24|offline 2015-10-27 05:42:45 <-- RenegadeEagle (~RenegadeE@173-19-198-172.client.mchsi.com) a quitté (Quit: Nettalk6 - www.ntalk.de) 2015-10-27 06:09:58 <-- Pangea (~Pangea@unaffiliated/pangea) a quitté (Ping timeout: 265 seconds) 2015-10-27 06:49:27 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2015-10-27 06:51:56 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 260 seconds) 2015-10-27 06:51:56 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2015-10-27 07:17:10 <-- progwml6 (~progwml6@n2-163-223.dhcp.drexel.edu) a quitté (Quit: Textual IRC Client: www.textualapp.com) 2015-10-27 07:20:51 <-- gurun (~gurun@c83-249-65-92.bredband.comhem.se) a quitté (Ping timeout: 240 seconds) 2015-10-27 08:58:51 -- zz_r04r est maintenant connu sous le nom r04r 2015-10-27 09:21:24 -- ScruffyRules est maintenant connu sous le nom ScruffyRules|awa 2015-10-27 09:22:03 -- ScruffyRules|awa est maintenant connu sous le nom ScruffyRules 2015-10-27 09:28:38 --> barneygale (~barneygal@90.194.221.84) a rejoint #mcdevs 2015-10-27 09:35:38 <-- DemiPixel (62ead9d7@gateway/web/freenode/ip.98.234.217.215) a quitté (Quit: Page closed) 2015-10-27 09:41:55 --> UUID0119 (~UUID00@85.10.46.68) a rejoint #mcdevs 2015-10-27 09:49:09 <-- barneygale (~barneygal@90.194.221.84) a quitté (Ping timeout: 250 seconds) 2015-10-27 09:50:00 --> barneygale (~barneygal@176.248.219.90) a rejoint #mcdevs 2015-10-27 10:17:16 <-- barneygale (~barneygal@176.248.219.90) a quitté (Ping timeout: 260 seconds) 2015-10-27 10:53:09 <-- Grum (~grum@irc.grum.nl) a quitté (Quit: ZNC - http://znc.in) 2015-10-27 11:51:01 --> DiaLight (~DiaLight@ip212-109-15-145.sampo.ru) a rejoint #mcdevs 2015-10-27 13:02:11 -- barneygale_ est maintenant connu sous le nom barneygale 2015-10-27 14:54:45 --> mml (~mml@198-74-7-53.fttp.usinternet.com) a rejoint #mcdevs 2015-10-27 14:55:44 --> |Blaze| (~scott@184.70.189.74) a rejoint #mcdevs 2015-10-27 15:21:27 mml is there some trick to getting debug logging enabled on the client on osx? 2015-10-27 15:23:34 mml ah, there it is, "profile" settings 2015-10-27 17:55:02 <-- |Blaze| (~scott@184.70.189.74) a quitté (Quit: Lost terminal) 2015-10-27 19:30:23 Fenhl so someone changed the packed IDs for Spectate and Plugin Message on [[Pre-release protocol]], but didn't update them in the TOC. Can someone verify if the changes are correct? 2015-10-27 19:32:45 --> Grum (~grum@irc.grum.nl) a rejoint #mcdevs 2015-10-27 19:32:45 -- Mode #mcdevs [+v Grum] par ChanServ 2015-10-27 19:34:34 <-- Grum (~grum@irc.grum.nl) a quitté (Client Quit) 2015-10-27 19:34:58 --> Grum (~grum@irc.grum.nl) a rejoint #mcdevs 2015-10-27 19:34:58 -- Mode #mcdevs [+v Grum] par ChanServ 2015-10-27 19:49:05 Not-f7bb [minecraft-data] rom1504 pushed 1 commit to master [+0/-0/±1] http://git.io/vWycU 2015-10-27 19:49:07 Not-f7bb [minecraft-data] rom1504 7a52708 - update 1.9 blocks (based on wiki revision before the 28/10/2015) 2015-10-27 20:31:41 --> barneygale_ (~barneygal@2.216.198.15) a rejoint #mcdevs 2015-10-27 20:34:19 <-- DiaLight (~DiaLight@ip212-109-15-145.sampo.ru) a quitté (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/) 2015-10-27 20:47:02 --> RenegadeEagle (~RenegadeE@173-19-198-172.client.mchsi.com) a rejoint #mcdevs 2015-10-27 21:14:51 --> M4GNV5 (~Instantbi@p54988318.dip0.t-ipconnect.de) a rejoint #mcdevs 2015-10-27 21:57:27 M4GNV5 http://mcdevs.org/ is down 2015-10-27 21:59:55 rom1504 M4GNV5: what was there ? 2015-10-27 22:00:12 M4GNV5 channel rules 2015-10-27 22:01:17 M4GNV5 https://web.archive.org/web/20140517214154/http://mcdevs.org/ 2015-10-27 22:06:16 dx the topic has a new link 2015-10-27 22:09:04 M4GNV5 i see, just ChanServ has the old one 2015-10-27 22:20:41 <-- barneygale_ (~barneygal@2.216.198.15) a quitté (Remote host closed the connection) 2015-10-27 22:42:28 --> barneygale_ (~barneygal@2.216.198.15) a rejoint #mcdevs 2015-10-27 22:50:15 <-- M4GNV5 (~Instantbi@p54988318.dip0.t-ipconnect.de) a quitté (Quit: Instantbird 1.5 -- http://www.instantbird.com) 2015-10-27 23:02:07 --> BizarreCake (~BizarreCa@85.65.93.87.dynamic.barak-online.net) a rejoint #mcdevs 2015-10-27 23:28:59 barneygale_ Can data tags in slot data ever have a non-empty top-level name? 2015-10-27 23:36:17 --> ry60003333 (~ry6000333@129.21.118.59) a rejoint #mcdevs 2015-10-27 23:46:29 -- Guest61193 est maintenant connu sous le nom jython234 2015-10-27 23:50:16 --> UUID01110 (~UUID00@cpe-213-157-225-153.dynamic.amis.net) a rejoint #mcdevs 2015-10-27 23:51:44 <-- UUID0119 (~UUID00@85.10.46.68) a quitté (Ping timeout: 260 seconds) 2015-10-27 23:57:17 --> Pangea (~Pangea@unaffiliated/pangea) a rejoint #mcdevs 2015-10-28 00:12:57 <-- ry60003333 (~ry6000333@129.21.118.59) a quitté (Quit: ry60003333) 2015-10-28 00:14:35 barneygale_ packets renumbered in 15w43, pretty sure 2015-10-28 00:14:45 barneygale_ anyone have an updated list? 2015-10-28 00:15:04 nickelpro barneygale_: Regarding your slot question, you mean for the complex nbt? 2015-10-28 00:16:01 nickelpro In which case I'm pretty sure they can and I'm also fairly sure nothing uses that name 2015-10-28 00:16:05 barneygale_ I think so. i'm not sure what you mean by /complex/ nbt 2015-10-28 00:17:01 nickelpro s/complex/compound/g 2015-10-28 00:17:16 nickelpro I forgot the type name 2015-10-28 00:17:34 barneygale_ ahh 2015-10-28 00:17:41 barneygale_ yes 2015-10-28 00:18:23 barneygale_ thanks for the info :) 2015-10-28 00:59:39 <-- realz (~realz@unaffiliated/realazthat) a quitté (Read error: Connection reset by peer) 2015-10-28 01:00:04 --> realz (~realz@unaffiliated/realazthat) a rejoint #mcdevs 2015-10-28 01:00:05 <-- AlphaBlend (AlphaBlend@pool-173-58-38-132.lsanca.fios.verizon.net) a quitté (Read error: Connection reset by peer) 2015-10-28 01:00:44 --> AlphaBlend (AlphaBlend@pool-173-58-38-132.lsanca.fios.verizon.net) a rejoint #mcdevs 2015-10-28 01:01:20 <-- bfoxwell (~Foxwell@c-76-110-182-132.hsd1.fl.comcast.net) a quitté (Read error: Connection reset by peer) 2015-10-28 01:02:09 --> bfoxwell (~Foxwell@c-76-110-182-132.hsd1.fl.comcast.net) a rejoint #mcdevs 2015-10-28 01:03:29 <-- unascribed (~aesen@everybody.do.the.net.split.unascribed.com) a quitté (Ping timeout: 250 seconds) 2015-10-28 01:04:03 --> unascribed (~aesen@everybody.do.the.net.split.unascribed.com) a rejoint #mcdevs 2015-10-28 01:27:57 Not-f7bb [minecraft-data] rom1504 pushed 1 commit to master [+0/-0/±1] http://git.io/vW9LM 2015-10-28 01:27:58 Not-f7bb [minecraft-data] rom1504 8ea2efc - update 1.9 recipes (based on wiki revision before the 28/10/2015) 2015-10-28 01:38:42 <-- r04r (r04r@unaffiliated/r04r) a quitté (Ping timeout: 250 seconds) 2015-10-28 01:46:32 --> r04r (r04r@unaffiliated/r04r) a rejoint #mcdevs 2015-10-28 01:58:57 <-- UUID01110 (~UUID00@cpe-213-157-225-153.dynamic.amis.net) a quitté (Quit: Nettalk6 - www.ntalk.de) 2015-10-28 01:59:52 -- r04r est maintenant connu sous le nom zz_r04r 2015-10-28 02:08:10 <-- barneygale_ (~barneygal@2.216.198.15) a quitté (Ping timeout: 250 seconds) 2015-10-28 02:22:52 <-- yorick (~yorick@oftn/member/yorick) a quitté (Ping timeout: 255 seconds) 2015-10-28 02:34:38 --> yorick (~yorick@ip51cd0513.speed.planet.nl) a rejoint #mcdevs 2015-10-28 02:34:38 <-- yorick (~yorick@ip51cd0513.speed.planet.nl) a quitté (Changing host) 2015-10-28 02:34:38 --> yorick (~yorick@oftn/member/yorick) a rejoint #mcdevs 2015-10-28 03:05:08 <-- AlphaBlend (AlphaBlend@pool-173-58-38-132.lsanca.fios.verizon.net) a quitté (Read error: Connection reset by peer) 2015-10-28 03:06:06 --> AlphaBlend (~Vector@pool-173-58-38-132.lsanca.fios.verizon.net) a rejoint #mcdevs 2015-10-28 03:07:23 -- umby24|offline est maintenant connu sous le nom umby24 2015-10-28 03:39:49 <-- Cxom_ (~Trinoxtio@2601:248:4200:4876:a050:1b70:5949:a2a0) a quitté (Read error: Connection reset by peer) 2015-10-28 03:52:59 <-- Jailout2000 (~Jailout20@unaffiliated/jailout2000) a quitté (Ping timeout: 268 seconds) 2015-10-28 03:54:35 --> Jailout2000 (~Jailout20@unaffiliated/jailout2000) a rejoint #mcdevs 2015-10-28 04:05:26 <-- RenegadeEagle (~RenegadeE@173-19-198-172.client.mchsi.com) a quitté (Quit: Nettalk6 - www.ntalk.de) 2015-10-28 04:14:45 <-- BizarreCake (~BizarreCa@85.65.93.87.dynamic.barak-online.net) a quitté (Remote host closed the connection) 2015-10-28 04:18:11 <-- Jailout2000 (~Jailout20@unaffiliated/jailout2000) a quitté (Ping timeout: 240 seconds) 2015-10-28 04:19:50 --> Jailout2000 (~Jailout20@unaffiliated/jailout2000) a rejoint #mcdevs 2015-10-28 04:35:37 <-- Jailout2000 (~Jailout20@unaffiliated/jailout2000) a quitté (Ping timeout: 255 seconds) 2015-10-28 04:46:19 --> Jailout2000 (~Jailout20@unaffiliated/jailout2000) a rejoint #mcdevs 2015-10-28 05:40:59 <-- Pangea (~Pangea@unaffiliated/pangea) a quitté (Quit: into the real world!) 2015-10-28 05:47:32 --> gurun (~gurun@95.109.41.135) a rejoint #mcdevs 2015-10-28 05:49:41 -- umby24 est maintenant connu sous le nom umby24|offline 2015-10-28 06:28:24 <-- angal (angal@elmo.stole-your.pw) a quitté (Ping timeout: 240 seconds) 2015-10-28 06:29:09 --> angal (angal@elmo.stole-your.pw) a rejoint #mcdevs 2015-10-28 06:49:31 --> redstonehelper_ (~redstoneh@p4FCCE03D.dip0.t-ipconnect.de) a rejoint #mcdevs 2015-10-28 06:49:31 <-- redstonehelper_ (~redstoneh@p4FCCE03D.dip0.t-ipconnect.de) a quitté (Changing host) 2015-10-28 06:49:31 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2015-10-28 06:51:35 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 240 seconds) 2015-10-28 06:51:35 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2015-10-28 07:06:06 <-- The_Yeti (~theyeti@c-73-157-143-173.hsd1.or.comcast.net) a quitté #mcdevs ("exit();") 2015-10-28 07:13:22 <-- gurun (~gurun@95.109.41.135) a quitté (Read error: Connection timed out) 2015-10-28 07:14:43 --> gurun (~gurun@95.109.41.135) a rejoint #mcdevs 2015-10-28 07:33:01 <-- benbaptist (~benbaptis@c-50-178-138-73.hsd1.in.comcast.net) a quitté (Ping timeout: 264 seconds) 2015-10-28 08:07:17 --> benbaptist (~benbaptis@c-50-178-138-73.hsd1.in.comcast.net) a rejoint #mcdevs 2015-10-28 09:19:22 -- zz_r04r est maintenant connu sous le nom r04r 2015-10-28 09:53:46 <-- gurun (~gurun@95.109.41.135) a quitté (Ping timeout: 255 seconds) 2015-10-28 09:54:08 --> icemanbp (~icemanbp@host10-154-static.240-95-b.business.telecomitalia.it) a rejoint #mcdevs 2015-10-28 10:02:32 <-- icemanbp (~icemanbp@host10-154-static.240-95-b.business.telecomitalia.it) a quitté 2015-10-28 11:51:56 ScruffyRules Hmm, there's no way to display saturation in vanilla is there? 2015-10-28 11:54:16 angal in vanilla client you an only see, if saturation == 0 2015-10-28 11:55:10 ScruffyRules And technically >0 2015-10-28 11:55:46 ScruffyRules Scoreboard wise there isn't a way to show it? 2015-10-28 11:57:52 angal It's requires some server side actions... You can send a scoreboard packet to player and update player entry on each his saturation change... 2015-10-28 11:58:21 ScruffyRules Mkay, thanks. 2015-10-28 11:59:26 barneygale So I wrote an nbt parser last night. The slot data docs say " the byte is 0, there is no NBT data, and no further data follows. Otherwise the byte is the start of the nbt blob". I think this is probably misleading - the 0 byte is probably TAG_End 2015-10-28 12:01:20 barneygale NBT docs are a bit weird in that they insist tags always begin with a tag id (byte) and a tag name (string), but this is only true in two cases: the top-level tag, and tags inside a TAG_Compound 2015-10-28 12:03:11 barneygale My parser is here if anyone's interested: https://github.com/barneygale/quarry/blob/snappy/quarry/utils/buffer.py#L172-L219 - it's lossy as it doesn't preserve the types of numerical tags, but it's also about 10% of the size of other python nbt parsers i've seen 2015-10-28 13:14:31 <-- AlphaBlend (~Vector@pool-173-58-38-132.lsanca.fios.verizon.net) a quitté (Ping timeout: 250 seconds) 2015-10-28 13:15:50 <-- barneygale (~barneygal@mail.thefoundry.co.uk) a quitté (Remote host closed the connection) 2015-10-28 13:19:20 --> barneygale (~barneygal@mail.thefoundry.co.uk) a rejoint #mcdevs 2015-10-28 14:46:32 --> NoxyD (Woxyfoo@host86-182-124-200.range86-182.btcentralplus.com) a rejoint #mcdevs 2015-10-28 15:11:42 <-- unascribed (~aesen@everybody.do.the.net.split.unascribed.com) a quitté (Quit: Your warranty is now void.) 2015-10-28 15:29:40 --> AlphaBlend (AlphaBlend@pool-173-58-38-132.lsanca.fios.verizon.net) a rejoint #mcdevs 2015-10-28 15:44:10 --> |Blaze| (~scott@184.70.189.74) a rejoint #mcdevs 2015-10-28 16:00:21 Fenhl barneygale: I don't think a single TAG_End is valid NBT? 2015-10-28 16:13:51 --> unascribed (~aesen@everybody.do.the.net.split.unascribed.com) a rejoint #mcdevs 2015-10-28 16:32:55 barneygale Fenhl, I'm not sure either, but the slot data format makes little sense otherwise. Either that byte is NBT data or not 2015-10-28 16:33:24 barneygale would be interesting to see how it works in deobfuscated source 2015-10-28 16:49:55 rom1504 barneygale: hmm, in the end did you try to see if gamemode3 worked with your proxy ? 2015-10-28 16:50:23 +Thinkofdeath barneygale: its just: if(nbt == null) writeByte(0); else NBTThing.write(nbt, this); 2015-10-28 16:51:31 +Thinkofdeath http://hastebin.com/vegacuzefa.java 2015-10-28 17:13:45 --> DiaLight (~DiaLight@ip212-109-15-145.sampo.ru) a rejoint #mcdevs 2015-10-28 17:24:10 barneygale Thinkofdeath, ahh OK 2015-10-28 17:24:37 barneygale that seems dodgy from a design standpoint but whatever 2015-10-28 17:41:02 Fenhl it's basically an Optional NBT tag 2015-10-28 18:10:32 barneygale I know 2015-10-28 18:51:31 --> gurun (~gurun@95.109.41.135) a rejoint #mcdevs 2015-10-28 19:10:41 --> BizarreCake (~BizarreCa@85.65.93.87.dynamic.barak-online.net) a rejoint #mcdevs 2015-10-28 19:28:40 --> redstonehelper_ (~redstoneh@p4FCCF812.dip0.t-ipconnect.de) a rejoint #mcdevs 2015-10-28 19:28:40 <-- redstonehelper_ (~redstoneh@p4FCCF812.dip0.t-ipconnect.de) a quitté (Changing host) 2015-10-28 19:28:40 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2015-10-28 19:31:35 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 240 seconds) 2015-10-28 19:31:36 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2015-10-28 19:37:04 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 260 seconds) 2015-10-28 19:39:54 --> redstonehelper (~redstoneh@p4FCCF041.dip0.t-ipconnect.de) a rejoint #mcdevs 2015-10-28 19:39:54 <-- redstonehelper (~redstoneh@p4FCCF041.dip0.t-ipconnect.de) a quitté (Client Quit) 2015-10-28 19:40:30 --> redstonehelper (~redstoneh@p4FCCF041.dip0.t-ipconnect.de) a rejoint #mcdevs 2015-10-28 19:40:30 <-- redstonehelper (~redstoneh@p4FCCF041.dip0.t-ipconnect.de) a quitté (Changing host) 2015-10-28 19:40:30 --> redstonehelper (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2015-10-28 19:40:39 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Client Quit) 2015-10-28 19:41:15 --> redstonehelper (~redstoneh@p4FCCF041.dip0.t-ipconnect.de) a rejoint #mcdevs 2015-10-28 19:41:15 <-- redstonehelper (~redstoneh@p4FCCF041.dip0.t-ipconnect.de) a quitté (Client Quit) 2015-10-28 19:41:51 --> redstonehelper (~redstoneh@p4FCCF041.dip0.t-ipconnect.de) a rejoint #mcdevs 2015-10-28 19:41:51 <-- redstonehelper (~redstoneh@p4FCCF041.dip0.t-ipconnect.de) a quitté (Client Quit) 2015-10-28 19:42:22 --> redstonehelper (~redstoneh@p4FCCF041.dip0.t-ipconnect.de) a rejoint #mcdevs 2015-10-28 19:42:22 <-- redstonehelper (~redstoneh@p4FCCF041.dip0.t-ipconnect.de) a quitté (Changing host) 2015-10-28 19:42:22 --> redstonehelper (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2015-10-28 19:42:47 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Client Quit) 2015-10-28 19:43:14 --> redstonehelper (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2015-10-28 19:45:41 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté #mcdevs 2015-10-28 20:05:14 <-- BizarreCake (~BizarreCa@85.65.93.87.dynamic.barak-online.net) a quitté (Remote host closed the connection) 2015-10-28 20:48:40 --> DemonWav (~DemonWav@unaffiliated/demonwav) a rejoint #mcdevs 2015-10-28 21:04:22 --> redstonehelper__ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2015-10-28 21:04:40 -- redstonehelper__ est maintenant connu sous le nom redstonehelper 2015-10-28 21:08:18 --> NickG365_ (~NickG365@cortex.starlabs.theflash.rocks) a rejoint #mcdevs 2015-10-28 21:10:31 <-- NickG365 (~NickG365@cortex.starlabs.theflash.rocks) a quitté (Ping timeout: 240 seconds) 2015-10-28 21:48:30 --> RenegadeEagle (~RenegadeE@173-19-198-172.client.mchsi.com) a rejoint #mcdevs 2015-10-28 22:12:20 <-- AlphaBlend (AlphaBlend@pool-173-58-38-132.lsanca.fios.verizon.net) a quitté (Ping timeout: 260 seconds) 2015-10-28 22:20:50 <-- DiaLight (~DiaLight@ip212-109-15-145.sampo.ru) a quitté (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/) 2015-10-28 23:13:45 --> AlphaBlend (AlphaBlend@pool-173-58-38-132.lsanca.fios.verizon.net) a rejoint #mcdevs 2015-10-28 23:14:57 --> Chronus (~chron@194.44.84.246) a rejoint #mcdevs 2015-10-28 23:17:53 <-- Chronus (~chron@194.44.84.246) a quitté #mcdevs ("Leaving.") 2015-10-28 23:33:43 --> Pangea (~Pangea@unaffiliated/pangea) a rejoint #mcdevs 2015-10-29 00:00:02 --> Timelaw (~Timelaw@78-69-251-208-no168.tbcn.telia.com) a rejoint #mcdevs 2015-10-29 00:27:57 <-- Pangea (~Pangea@unaffiliated/pangea) a quitté (Ping timeout: 265 seconds) 2015-10-29 00:42:11 Timelaw I'm implementing a MC 1.8.8 server and I am working on the encryption. After the encryption is turned on, how do I encrypt the packets? Do I do it over the whole packet after compression? 2015-10-29 00:42:45 Timelaw Might seem like a stupid question I guess. I assume yes, but I haven't done anything like this before so :) 2015-10-29 00:44:28 +Amaranth After compression, if you can compress encrypted data you have a problem :) 2015-10-29 00:46:16 Timelaw Amaranth: I was just thinking about if I encrypt the whole packet or fields of packets. So when I get the encryption response, which the client is supossed to encrypt. Do I decrypt the whole packet to get the shared secret, its length and the token with length? 2015-10-29 00:47:35 Timelaw Also, can I have anything for the token? I am just supposed to use it to verify the encryption/decryption works, right? 2015-10-29 00:58:19 -- r04r est maintenant connu sous le nom zz_r04r 2015-10-29 01:11:54 +ammar2 Timelaw: the client sends you back two encrypted byte arrays as the fields, you decrypt both the shared secret and the token 2015-10-29 01:12:01 +ammar2 veryify that the token is the same as the one you sent 2015-10-29 01:12:13 +ammar2 and then iniate the stream cipher using the shared secret 2015-10-29 01:12:22 +ammar2 wow I can't spell tonight 2015-10-29 01:13:08 +ammar2 so yeah, the structure of the packet itself is unencrypted, just the byte arrays representing the shared secret and token are encrypted using the provided public key 2015-10-29 01:37:18 <-- bildramer (~bildramer@p4FE649E1.dip0.t-ipconnect.de) a quitté (Ping timeout: 244 seconds) 2015-10-29 01:43:38 Timelaw ammar2: Okey :) 2015-10-29 01:44:04 Timelaw ammar2: So I would parse those packets like any other packet but in the handling decrypt them and verify the token then 2015-10-29 01:48:18 --> bildramer (~bildramer@p5DC8A746.dip0.t-ipconnect.de) a rejoint #mcdevs 2015-10-29 01:50:30 Timelaw ammar2: Can you elaborate on initiating the stream cipher? 2015-10-29 02:00:50 Timelaw ammar2: Ah okey, so the Shared Secret is going to be the inital state in the stream cipher, right? 2015-10-29 02:12:48 <-- Timelaw (~Timelaw@78-69-251-208-no168.tbcn.telia.com) a quitté (Ping timeout: 260 seconds) 2015-10-29 03:26:16 -- AlJaMa_ est maintenant connu sous le nom AlJaMa 2015-10-29 03:26:22 <-- AlJaMa (~quassel@76.73.104.34) a quitté (Changing host) 2015-10-29 03:26:22 --> AlJaMa (~quassel@unaffiliated/aljama) a rejoint #mcdevs 2015-10-29 03:34:06 --> Pangea (~Pangea@unaffiliated/pangea) a rejoint #mcdevs 2015-10-29 04:18:37 --> barneygale_ (~barneygal@2.216.199.231) a rejoint #mcdevs 2015-10-29 04:51:52 <-- RenegadeEagle (~RenegadeE@173-19-198-172.client.mchsi.com) a quitté (Read error: Connection reset by peer) 2015-10-29 04:54:01 <-- barneygale_ (~barneygal@2.216.199.231) a quitté (Ping timeout: 264 seconds) 2015-10-29 05:30:24 <-- AlphaBlend (AlphaBlend@pool-173-58-38-132.lsanca.fios.verizon.net) a quitté (Read error: Connection reset by peer) 2015-10-29 05:31:20 --> AlphaBlend (~Vector@pool-173-58-38-132.lsanca.fios.verizon.net) a rejoint #mcdevs 2015-10-29 05:56:38 <-- Pangea (~Pangea@unaffiliated/pangea) a quitté (Ping timeout: 265 seconds) 2015-10-29 06:13:25 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2015-10-29 06:16:13 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 264 seconds) 2015-10-29 06:16:13 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2015-10-29 06:21:28 <-- MrARM (~MrARM@unaffiliated/mrarm) a quitté (Ping timeout: 244 seconds) 2015-10-29 06:23:36 <-- darngeek (~darngeek@bouncer.pocketmine.net) a quitté (Ping timeout: 256 seconds) 2015-10-29 06:24:10 <-- shoghicp (~shoghicp@bouncer.pocketmine.net) a quitté (Ping timeout: 256 seconds) 2015-10-29 06:24:56 --> MrARM (~MrARM@unaffiliated/mrarm) a rejoint #mcdevs 2015-10-29 06:25:56 --> shoghicp (~shoghicp@bouncer.pocketmine.net) a rejoint #mcdevs 2015-10-29 06:28:56 --> darngeek (~darngeek@bouncer.pocketmine.net) a rejoint #mcdevs 2015-10-29 09:16:33 --> barneygale_ (~barneygal@176.25.17.97) a rejoint #mcdevs 2015-10-29 09:29:22 -- zz_r04r est maintenant connu sous le nom r04r 2015-10-29 09:37:53 --> realz__ (~realz@pool-108-30-23-115.nycmny.fios.verizon.net) a rejoint #mcdevs 2015-10-29 09:41:11 <-- realz (~realz@unaffiliated/realazthat) a quitté (Ping timeout: 255 seconds) 2015-10-29 10:06:16 <-- barneygale_ (~barneygal@176.25.17.97) a quitté (Ping timeout: 240 seconds) 2015-10-29 10:48:42 --> DiaLight (~DiaLight@ip212-109-15-145.sampo.ru) a rejoint #mcdevs 2015-10-29 10:48:44 DiaLight Привет! 2015-10-29 11:15:44 --> Timelaw (~Timelaw@78-69-251-208-no168.tbcn.telia.com) a rejoint #mcdevs 2015-10-29 11:39:53 barneygale Timelaw, fyi, one encryption is turned on the /entire stream/ is encrypted, including packet lengths, ids and payloads 2015-10-29 11:39:58 barneygale s/one/once/ 2015-10-29 11:55:27 Timelaw barneygale: Yea so once the response from the client arrives and i verify it, all packets are ciphered, right? :) 2015-10-29 12:03:50 angal Yup. 2015-10-29 12:13:17 barneygale Timelaw, that's right 2015-10-29 12:36:17 Timelaw barneygale, angal: Thanks! :) 2015-10-29 13:07:43 Not-f7bb [minecraft-data] rom1504 pushed 1 commit to master [+0/-0/±1] http://git.io/vWAyH 2015-10-29 13:07:45 Not-f7bb [minecraft-data] rom1504 948577c - added minecraft-jar-extractor in python in the extractors 2015-10-29 14:06:52 --> DiaLight|2 (~DiaLight@ip212-109-15-145.sampo.ru) a rejoint #mcdevs 2015-10-29 14:08:22 <-- DiaLight (~DiaLight@ip212-109-15-145.sampo.ru) a quitté (Ping timeout: 268 seconds) 2015-10-29 14:28:40 <-- AlphaBlend (~Vector@pool-173-58-38-132.lsanca.fios.verizon.net) a quitté (Ping timeout: 256 seconds) 2015-10-29 15:23:15 --> AlphaBlend (AlphaBlend@pool-173-58-38-132.lsanca.fios.verizon.net) a rejoint #mcdevs 2015-10-29 15:34:00 <-- gurun (~gurun@95.109.41.135) a quitté (Ping timeout: 246 seconds) 2015-10-29 15:54:20 <-- realz__ (~realz@pool-108-30-23-115.nycmny.fios.verizon.net) a quitté (Changing host) 2015-10-29 15:54:20 --> realz__ (~realz@unaffiliated/realazthat) a rejoint #mcdevs 2015-10-29 15:54:24 -- realz__ est maintenant connu sous le nom realz 2015-10-29 16:01:03 --> UUID01110 (~UUID00@85.10.46.147) a rejoint #mcdevs 2015-10-29 16:10:52 --> williamtdr (uid27909@gateway/web/irccloud.com/x-djcjgwozacsojapd) a rejoint #mcdevs 2015-10-29 16:31:09 --> gurun (~gurun@95.109.41.135) a rejoint #mcdevs 2015-10-29 17:12:34 -- aeonchild est maintenant connu sous le nom aeonskelton 2015-10-29 17:51:11 <-- Danielh90 (~Danielh90@97-91-156-141.dhcp.stls.mo.charter.com) a quitté (Ping timeout: 240 seconds) 2015-10-29 17:51:57 --> Danielh90 (~Danielh90@97-91-156-141.dhcp.stls.mo.charter.com) a rejoint #mcdevs 2015-10-29 18:00:40 TkTech Database migration some time this week, expect 5 - 30 minutes of downtime at some point 2015-10-29 18:13:21 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Read error: Connection reset by peer) 2015-10-29 18:14:45 --> redstonehelper (~redstoneh@p579527F4.dip0.t-ipconnect.de) a rejoint #mcdevs 2015-10-29 18:14:45 <-- redstonehelper (~redstoneh@p579527F4.dip0.t-ipconnect.de) a quitté (Changing host) 2015-10-29 18:14:45 --> redstonehelper (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2015-10-29 18:15:42 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Read error: Connection reset by peer) 2015-10-29 18:15:53 --> redstonehelper (~redstoneh@p579527F4.dip0.t-ipconnect.de) a rejoint #mcdevs 2015-10-29 18:15:53 <-- redstonehelper (~redstoneh@p579527F4.dip0.t-ipconnect.de) a quitté (Changing host) 2015-10-29 18:15:53 --> redstonehelper (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2015-10-29 20:28:24 <-- williamtdr (uid27909@gateway/web/irccloud.com/x-djcjgwozacsojapd) a quitté (Quit: Connection closed for inactivity) 2015-10-29 20:35:26 --> barneygale_ (~barneygal@176.25.17.97) a rejoint #mcdevs 2015-10-29 20:46:41 --> RenegadeEagle (~RenegadeE@173-19-198-172.client.mchsi.com) a rejoint #mcdevs 2015-10-29 20:48:13 <-- neersighted (sid5776@gateway/web/irccloud.com/x-ohyhcnztfccqhexn) a quitté (Quit: Connection closed for inactivity) 2015-10-29 21:25:31 <-- barneygale_ (~barneygal@176.25.17.97) a quitté (Ping timeout: 240 seconds) 2015-10-29 21:28:34 --> barneygale_ (~barneygal@176.25.17.97) a rejoint #mcdevs 2015-10-29 21:36:22 <-- DiaLight|2 (~DiaLight@ip212-109-15-145.sampo.ru) a quitté (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/) 2015-10-29 21:54:26 <-- Timelaw (~Timelaw@78-69-251-208-no168.tbcn.telia.com) a quitté (Quit: WeeChat 1.3) 2015-10-29 22:18:01 --> BizarreCake (~BizarreCa@85.65.93.87.dynamic.barak-online.net) a rejoint #mcdevs 2015-10-29 22:53:43 <-- barneygale_ (~barneygal@176.25.17.97) a quitté (Remote host closed the connection) 2015-10-29 23:10:22 --> Pangea (~Pangea@unaffiliated/pangea) a rejoint #mcdevs