2017-06-24 00:45:04 pokechu22 Sorta, yes 2017-06-24 00:45:31 pokechu22 Are you referring to one in the world (for the chunk format)? 2017-06-24 00:46:03 AJM__ Hmm 2017-06-24 00:46:12 <-- chrismin13 (5b8a810c@gateway/web/freenode/ip.91.138.129.12) a quitté (Ping timeout: 260 seconds) 2017-06-24 00:46:38 AJM__ So placed block data such as Leaves have for example block data of 12. In ItemStack form, the max block data is 4. 2017-06-24 00:46:50 pokechu22 Oh 2017-06-24 00:47:01 pokechu22 That's different and more complicated; you get into block states vs data 2017-06-24 00:47:04 AJM__ Obviously setting the item data to that block data would give the pink block 2017-06-24 00:48:46 pokechu22 I don't have a good answer for that; it varies by block. For leaves, for instance, you have the variant, but you also have decayable and check_decay states (which aren't valid on the item) 2017-06-24 00:50:33 pokechu22 Leaves, at least, are a special case; it just uses only the variant state when you break them with shears. But other items may have other special cases too (eg, logs) 2017-06-24 00:50:59 pokechu22 This system's going to be revamped in 1.13 though (no metadata for items, and the only block states will be ones that aren't persistent) 2017-06-24 00:54:57 AJM__ Hmm there must be a registry for it on the server though 2017-06-24 00:55:26 AJM__ How else would it support middle clicks in creative, dropping ItemStack's from block breaks, etc... 2017-06-24 00:56:23 pokechu22 Are you writing something from scatch? Or are you using an existing server (craftbukkit/spigot, or forge)? Because yes, there is some method for it, but I'd have to know what name you need 2017-06-24 00:56:55 AJM__ Spigot 2017-06-24 00:59:33 AJM__ I've tried MaterialData from block state, getting the NMS Item object via Item.getItemOf(block) with the parameter being the placed block. Still no luck there. 2017-06-24 01:00:16 pokechu22 Yea, for NMS, you want the numeric ID first, and then getDropData 2017-06-24 01:00:29 pokechu22 Checking how creative does it 2017-06-24 01:03:07 AJM__ getDropData basically returns the Item.getItemOf() which I used as well ;( 2017-06-24 01:04:32 AJM__ getDropType() 2017-06-24 01:04:42 AJM__ getDropData() looks like it always returns 0, hmm. 2017-06-24 01:05:07 pokechu22 OK, if you want an itemstack, you want what MCP calls `Itemstack Block.getItem(World, BlockPos, IBlockState)` and what bukkit calls `ItemStack a(World, BlockPosition, IBlockData)` 2017-06-24 01:05:18 pokechu22 Yea, it's overriden for subclasses 2017-06-24 01:06:26 AJM__ Where is that "a" method? 2017-06-24 01:07:15 pokechu22 In `Block` (and subclasses); it's non-static. Note that there are a bazillion other methods named `a`, make sure to get the right one 2017-06-24 01:09:58 AJM__ Lol what server version are you looking in? I don't see any method with that signature except one that returns a hit box xd 2017-06-24 01:11:21 pokechu22 Uuh, actually, that's a good question. Let me double-check 1.12 2017-06-24 01:11:43 AJM__ What would it be for 1.8? 2017-06-24 01:12:33 pokechu22 Ooh, 1.8? I don't know, that's a way different codebase. I'll look... but you really shouldn't still be developing for 1.8, it's years old and there are a lot of bugs that will never be fixed 2017-06-24 01:13:25 AJM__ Yeah long story but we support forward compatibility 2017-06-24 01:15:10 AJM__ Ahh I see it 2017-06-24 01:15:22 pokechu22 In 1.8 you need to use getDropData(World, BlockPos) for metadata and another method to get the item 2017-06-24 01:22:19 AJM__ Weird, still not working. 2017-06-24 01:38:48 AJM__ Ahh nevermind, works good. 2017-06-24 01:39:24 AJM__ Although I don't understand how there could be variation in getBlock inside the Item class since it looks for the block by the type and not data. 2017-06-24 01:41:10 pokechu22 IIRC, Item just is a type of item; it doesn't include the data 2017-06-24 01:46:04 pokechu22 Use getDropType, not getBlock in item; getDropType correctly handles things like repeaters (overriden there) 2017-06-24 01:47:22 AJM__ Yeah, anyways thanks for your time and appreciate the help! 2017-06-24 01:50:04 pokechu22 No problem, glad to help (but do try to update if you can) 2017-06-24 01:52:59 AJM__ Yeah for sure, having an issue with Boss Bars atm with it too 2017-06-24 01:53:15 AJM__ Since 1.9 contains the API while 1.8 does not 2017-06-24 02:13:15 kashike because there is no bossbar packet in 1.8 2017-06-24 02:16:50 <-- AJM__ (~AJ@76-219-213-41.lightspeed.irvnca.sbcglobal.net) a quitté (Ping timeout: 260 seconds) 2017-06-24 02:28:09 --> AJM__ (~AJ@76-219-213-41.lightspeed.irvnca.sbcglobal.net) a rejoint #mcdevs 2017-06-24 02:46:20 <-- AJM__ (~AJ@76-219-213-41.lightspeed.irvnca.sbcglobal.net) a quitté (Ping timeout: 240 seconds) 2017-06-24 03:03:53 --> AJM__ (~AJ@76-219-213-41.lightspeed.irvnca.sbcglobal.net) a rejoint #mcdevs 2017-06-24 03:50:12 <-- AJM__ (~AJ@76-219-213-41.lightspeed.irvnca.sbcglobal.net) a quitté (Ping timeout: 240 seconds) 2017-06-24 04:38:26 <-- UUID02 (~UUID00@BSN-182-165-79.dynamic.siol.net) a quitté (Ping timeout: 246 seconds) 2017-06-24 05:49:52 --> AJM__ (~AJ@76-219-213-41.lightspeed.irvnca.sbcglobal.net) a rejoint #mcdevs 2017-06-24 06:03:57 AJM__ Anyone know of it is possible to spawn a wither without the boss bar? 2017-06-24 06:16:43 +md_5 version> 2017-06-24 06:18:33 AJM__ 1.8 2017-06-24 06:19:13 AJM__ I know 1.9 has an API to disable visibility, but when decompiling the client for version 1.8 it looks like it is possible as well 2017-06-24 06:20:32 +md_5 yeah... dunno about 1.8 , I'd think not 2017-06-24 06:22:03 AJM__ I've heard sending a fake wither to the client with negative health and an empty name would prevent it from rendering. 2017-06-24 06:25:14 AJM__ Gonna look through the client more to see any other ways for it to stop rendering the bar. 2017-06-24 06:30:27 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-06-24 06:32:56 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 276 seconds) 2017-06-24 06:32:56 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2017-06-24 06:36:11 <-- AJM__ (~AJ@76-219-213-41.lightspeed.irvnca.sbcglobal.net) a quitté (Ping timeout: 276 seconds) 2017-06-24 06:45:18 --> AJM__ (~AJ@76-219-213-41.lightspeed.irvnca.sbcglobal.net) a rejoint #mcdevs 2017-06-24 06:52:50 <-- AlphaBlend (AlphaBlend@cpe-66-74-178-84.socal.res.rr.com) a quitté (Ping timeout: 258 seconds) 2017-06-24 06:53:31 --> AlphaBlend (AlphaBlend@cpe-66-74-178-84.socal.res.rr.com) a rejoint #mcdevs 2017-06-24 07:36:40 <-- kev009 (~kev009@tempe0.bbox.io) a quitté (Quit: Konversation terminated!) 2017-06-24 07:37:46 --> kev009 (~kev009@tempe0.bbox.io) a rejoint #mcdevs 2017-06-24 07:37:46 -- Mode #mcdevs [+v kev009] par ChanServ 2017-06-24 07:42:32 <-- kev009 (~kev009@tempe0.bbox.io) a quitté (Client Quit) 2017-06-24 07:43:39 --> kev009 (~kev009@tempe0.bbox.io) a rejoint #mcdevs 2017-06-24 07:43:39 -- Mode #mcdevs [+v kev009] par ChanServ 2017-06-24 07:43:54 <-- gentauro (~gentauro@xd520f246.cust.hiper.dk) a quitté (Ping timeout: 268 seconds) 2017-06-24 08:23:30 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-06-24 08:25:23 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 255 seconds) 2017-06-24 08:25:23 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2017-06-24 08:36:26 --> gentauro (~gentauro@xd520f27a.cust.hiper.dk) a rejoint #mcdevs 2017-06-24 09:38:54 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-24 09:50:24 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Ping timeout: 255 seconds) 2017-06-24 10:13:50 <-- AJM__ (~AJ@76-219-213-41.lightspeed.irvnca.sbcglobal.net) a quitté (Ping timeout: 240 seconds) 2017-06-24 10:30:30 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Quit: Tachyon_) 2017-06-24 11:12:15 tktech timmyRS, I know you're trying to be helpful, and it's great 2017-06-24 11:12:27 tktech timmyRS, but if you could please only edit spam pages that occur on actual content pages, that'd be great 2017-06-24 11:12:41 tktech timmyRS, Since you editing all of those pages means I can't bulk ban and remove 2017-06-24 11:20:54 +md_5 tktech since youre around can I please get my password reset 2017-06-24 11:21:13 tktech >_. 2017-06-24 11:21:16 tktech >_> 2017-06-24 11:23:48 timmyRS tktech Ok thank you for that hint 2017-06-24 11:24:13 timmyRS Also not on User Talks, right? 2017-06-24 11:26:22 tktech Just pages that have actual content. 2017-06-24 11:27:07 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-06-24 11:29:35 timmyRS Ok, so if someone for example edits Protocol or Entities, etc. and adds spam, I shall undo it? 2017-06-24 11:29:56 timmyRS but all of the spam pages I should leave untouched 2017-06-24 11:31:23 tktech That's right. 2017-06-24 11:31:32 tktech All those spam users and their edits normally get automatically nuked. 2017-06-24 11:31:40 tktech You editing those pages stopped that and kept the spam around. 2017-06-24 11:32:01 timmyRS there is alot of spam anyways when you check out the pages list 2017-06-24 11:32:07 timmyRS does that not get auto-nuked? 2017-06-24 11:32:54 timmyRS http://wiki.vg/Special:AllPages 2017-06-24 11:34:19 tktech Things before a certain date don't. 2017-06-24 11:35:06 timmyRS the first entry "!!!AVAST..." is over a month old 2017-06-24 11:35:31 tktech Yes 2017-06-24 11:35:35 tktech What's your point? 2017-06-24 11:35:53 timmyRS I thought that was a bug, but if you say it's a feature 2017-06-24 11:36:06 tktech Did you misunderstand? 2017-06-24 11:36:13 tktech Things before a certain date don't get automatically removed. 2017-06-24 11:36:23 tktech Alllll the mediawiki spam tools are built around the RecentChanges feed. 2017-06-24 11:36:38 tktech Things not on the RecentChanges feed when moderation tools are run don't get culled. 2017-06-24 11:36:48 timmyRS Ahh ok, I did misunderstand you, sorry. 2017-06-24 11:44:38 --> UUID02 (~UUID00@BSN-182-165-79.dynamic.siol.net) a rejoint #mcdevs 2017-06-24 11:54:22 timmyRS juding by my RSS reader going crazy, you deleted things 2017-06-24 11:56:29 --> TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a rejoint #mcdevs 2017-06-24 12:03:47 <-- SpaceManiac (~SpaceMani@c-73-235-50-40.hsd1.ca.comcast.net) a quitté (Ping timeout: 276 seconds) 2017-06-24 12:04:20 --> SpaceManiac (~SpaceMani@c-73-235-50-40.hsd1.ca.comcast.net) a rejoint #mcdevs 2017-06-24 12:04:20 -- Mode #mcdevs [+v SpaceManiac] par ChanServ 2017-06-24 12:06:30 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-24 12:40:30 <-- gentauro (~gentauro@xd520f27a.cust.hiper.dk) a quitté (Ping timeout: 246 seconds) 2017-06-24 12:42:39 --> gentauro (~gentauro@xd520f27a.cust.hiper.dk) a rejoint #mcdevs 2017-06-24 13:00:38 <-- TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a quitté (Quit: Textual IRC Client: www.textualapp.com) 2017-06-24 13:22:59 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Quit: Tachyon_) 2017-06-24 13:33:45 <-- zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a quitté (Quit: Connection closed for inactivity) 2017-06-24 13:39:49 <-- Dadido3 (~quassel@p2003007A8B43B000C92C4BF4398B22B5.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2017-06-24 13:41:04 --> Dadido3 (~quassel@p2003007A8B43B000C92C4BF4398B22B5.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-06-24 14:13:57 <-- C4K3 (~C4K3@0127801301.0.fullrate.ninja) a quitté (Remote host closed the connection) 2017-06-24 14:16:02 --> C4K3 (~C4K3@0127801301.0.fullrate.ninja) a rejoint #mcdevs 2017-06-24 14:40:52 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-24 15:36:25 --> los_ (~los@net-188-218-71-221.cust.vodafonedsl.it) a rejoint #mcdevs 2017-06-24 15:45:58 <-- los_ (~los@net-188-218-71-221.cust.vodafonedsl.it) a quitté (Quit: los_) 2017-06-24 15:46:50 <-- gentauro (~gentauro@xd520f27a.cust.hiper.dk) a quitté (Ping timeout: 240 seconds) 2017-06-24 15:47:07 --> los_ (~los@net-188-218-71-221.cust.vodafonedsl.it) a rejoint #mcdevs 2017-06-24 15:48:50 --> gentauro (~gentauro@xd520f27a.cust.hiper.dk) a rejoint #mcdevs 2017-06-24 15:50:33 --> pogush (~pogush@net-188-218-71-221.cust.vodafonedsl.it) a rejoint #mcdevs 2017-06-24 16:00:37 <-- los_ (~los@net-188-218-71-221.cust.vodafonedsl.it) a quitté #mcdevs ("Leaving") 2017-06-24 17:52:50 <-- gentauro (~gentauro@xd520f27a.cust.hiper.dk) a quitté (Ping timeout: 240 seconds) 2017-06-24 17:54:24 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Quit: Tachyon_) 2017-06-24 17:55:06 --> gentauro (~gentauro@xd520f27a.cust.hiper.dk) a rejoint #mcdevs 2017-06-24 17:55:48 gurun So guys, now that MCPE has claimed the realms of Minecraft, should we only discuss MCPE here now then? 2017-06-24 18:09:53 timmyRS Isn't Minecraft and the Community/Java Edition still different? 2017-06-24 18:12:58 rom1504 different ? 2017-06-24 18:13:14 rom1504 you mean there's very little in common ? 2017-06-24 18:15:04 timmyRS You don't have cross-play because the protocol differs and you have different blocks 2017-06-24 18:15:25 timmyRS Also you have the marketplace on Minecraft but free maps and resource packs on the Community/Java Minecraft 2017-06-24 18:15:36 rom1504 lol 2017-06-24 18:15:42 rom1504 my point 2017-06-24 18:15:51 rom1504 you are saying there are different, well yes 2017-06-24 18:16:05 rom1504 from a development point of view, there are little common points 2017-06-24 18:16:14 rom1504 both are voxel network games 2017-06-24 18:16:18 rom1504 they share some data 2017-06-24 18:16:44 rom1504 that's it 2017-06-24 18:16:46 timmyRS Yeah, this is "mcdevs" so we have to see it from a developement point of view, right? 2017-06-24 18:17:02 rom1504 yes 2017-06-24 18:17:08 rom1504 what is your point ? 2017-06-24 18:17:36 timmyRS I just wanted to answer gurun's question - but knowing whats on topic and what not is not my job 2017-06-24 18:17:54 rom1504 yes they are different 2017-06-24 18:18:07 rom1504 but then idk maybe we can talk about it here since it's minecraft 2017-06-24 18:18:31 timmyRS I think we'll have to wait for a response from an admin 2017-06-24 18:18:40 -- Pseudos #mcdevs : [@ChanServ +Amaranth +AndrewPH +Dinnerbone +Fador +Fenhl +fragmer +Grum +kev009 +md_5 +Prf_Jakob +SinZ +SpaceManiac +Thinkofname +Zaneo 18VAAPUPB 7JTAAZHO3 _123DMWM __0x277F _MylesC Adam Aikar ajvpot Akkarin AlJaMa AlphaBlend Andrio angal aphelion ashka ashka_ balrog benbaptist bildramer Black-Hole Botched bramhaag Brandon15811 bswartz Byteflux C4K3 chibill clonejo_ clud csnxs Dadido3 darngeek dav1d deathrat Deaygo DemonWav dexter0 dx Dykam e ecx86 electroniccat EvilJStoker EW8GU ferrybig fl4sh_ gabizou gamingrobot gentauro GingerGeek Guest71302 GunfighterJ gurun Hafydd hansihe Hink humerusj I9hdkill_ jamierocks jast Jeebiss johni0702 kashike KernelFreeze KHobbits killme KnownUnown Krenair l4mRh4X0r laxask LaxWasHere Luck lukegb m0r13 MasterGberry_ Matsv matthewprenger__ mbaxter McLive Meeeh MeltedLux minecrell MiniDigger mooman219 Morrolan MrARM mrarm- mundus2018 Mustek Na NathanWolf NickG365 Not-75c6 offbeatwitch OkAlt Owexz Paprikachu PhonicUK2 pogush pokechu22 PolarizedIons Protocol_7 protryon prplz Pyker r04r redstonehelper rheddry roblabla RoboMWM rom1504 samfty samschaap ScruffyRules ShaRose shoghicp simpleauthority SupaHam Techcable timmyRS tktech TobiX Tux Tuxel tyteen4a03 unascribed UUID02 vemacs VoidWhisperer Voltasalt williammck willies952002 WizardCM x10A94 XorBoole Yamakaja yawkat yosafbridge YukonAppleGeek Z750 Zachoz zml |Blaze|] 2017-06-24 18:18:40 -- Canal #mcdevs : 158 pseudos (1 op, 14 voices, 143 normaux) 2017-06-24 18:19:15 gurun it's actually a semi-serious question, because they did reverse it now, so Minecraft is supposed to be bedrock (PE, W10, XBOX) and what we know as Minecraft is now Minecraft: Java Edition. 2017-06-24 18:19:54 gurun We have #mcpedevs where we normally hang out. 2017-06-24 18:20:13 timmyRS well isn't the answer then obvious? 2017-06-24 18:20:22 gurun we merge? 2017-06-24 18:20:33 timmyRS I was thinking about a rename 2017-06-24 18:20:47 timmyRS mcjavadevs will be mcdevs and mcpedevs will be mcdevs 2017-06-24 18:20:47 gurun like #mcjavadevs ? 2017-06-24 18:20:57 timmyRS yes 2017-06-24 18:21:59 gurun yeah propably .. but .. lest not :-) 2017-06-24 18:22:07 gurun *lets 2017-06-24 18:23:10 timmyRS I think this channel is for the Java Edition, and the #mcpedevs is for the Bedrock Edition 2017-06-24 18:24:43 timmyRS and a merge won't be helpful, in my opinion. 2017-06-24 18:32:10 MiniDigger I don't think we need to do anything just because some PR dude at microsoft decided to unify some names, lol 2017-06-24 18:38:29 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-24 18:59:47 <-- pogush (~pogush@net-188-218-71-221.cust.vodafonedsl.it) a quitté (Quit: Leaving) 2017-06-24 19:21:15 gurun just to piss the area we created #bedrockdevs :-) 2017-06-24 19:21:58 timmyRS How do you create a channel here? 2017-06-24 19:34:46 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-06-24 19:35:20 pokechu22 On IRC? I'm not 100% sure how it works, but I think just joining a channel that doesn't exist creates it for you 2017-06-24 19:37:56 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 246 seconds) 2017-06-24 19:37:56 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2017-06-24 19:41:11 Tachyon_ yes 2017-06-24 19:41:17 Tachyon_ but if you want to keep it 2017-06-24 19:41:22 Tachyon_ you have to talk with nickserv 2017-06-24 19:41:45 Tachyon_ or chanserv 2017-06-24 19:41:47 Tachyon_ or something 2017-06-24 19:48:05 --> TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a rejoint #mcdevs 2017-06-24 19:51:33 timmyRS Thanks 2017-06-24 19:56:13 Tachyon_ just google it 2017-06-24 20:00:45 --> AJM__ (~AJ@76-219-213-41.lightspeed.irvnca.sbcglobal.net) a rejoint #mcdevs 2017-06-24 20:19:12 MiniDigger you need to register it to chanserv 2017-06-24 20:19:18 MiniDigger msg ChanServ help 2017-06-24 20:52:09 rom1504 timmyRS: /join #howdoyoucreateachannelhere 2017-06-24 20:57:21 Tachyon_ rom1504: I really joined it 2017-06-24 20:57:32 Tachyon_ also /j is shorter :D 2017-06-24 21:34:40 <-- Techcable (znc@irc.techcable.net) a quitté (Quit: ZNC - http://znc.in) 2017-06-24 21:37:51 --> Techcable (znc@irc.techcable.net) a rejoint #mcdevs 2017-06-24 21:42:40 <-- AJM__ (~AJ@76-219-213-41.lightspeed.irvnca.sbcglobal.net) a quitté (Ping timeout: 255 seconds) 2017-06-24 21:51:38 <-- Krenair (~alex@wikimedia/Krenair) a quitté (Ping timeout: 246 seconds) 2017-06-24 21:56:07 --> Krenair (~alex@wikimedia/Krenair) a rejoint #mcdevs 2017-06-24 22:09:35 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Quit: Tachyon_) 2017-06-24 22:10:32 --> AJM__ (~AJ@76-219-213-41.lightspeed.irvnca.sbcglobal.net) a rejoint #mcdevs 2017-06-24 22:55:15 <-- AJM__ (~AJ@76-219-213-41.lightspeed.irvnca.sbcglobal.net) a quitté (Ping timeout: 260 seconds) 2017-06-24 23:08:05 --> AJM__ (~AJ@76-219-213-41.lightspeed.irvnca.sbcglobal.net) a rejoint #mcdevs 2017-06-25 00:08:12 --> itsme_ (~textual@x4d04fda9.dyn.telefonica.de) a rejoint #mcdevs 2017-06-25 00:16:53 <-- itsme_ (~textual@x4d04fda9.dyn.telefonica.de) a quitté (Quit: Textual IRC Client: www.textualapp.com) 2017-06-25 00:24:19 <-- EW8GU (admin@ho.by) a quitté (Read error: Connection reset by peer) 2017-06-25 00:29:38 --> EW8GU (admin@ho.by) a rejoint #mcdevs 2017-06-25 00:42:50 <-- m0r13 (~m0r13@2a01:4f8:201:8174:73:0:b00b:135) a quitté (Ping timeout: 240 seconds) 2017-06-25 00:59:51 <-- ashka_ (~ashka_@server2.shellgratuit.com) a quitté 2017-06-25 01:00:03 --> ashka_ (~ashka_@server2.shellgratuit.com) a rejoint #mcdevs 2017-06-25 01:27:53 Not-75c6 [mineflayer] rom1504 pushed 2 commits to master [+0/-0/±2] https://github.com/PrismarineJS/mineflayer/compare/b2597a9abc35...2eef1cf88a8a 2017-06-25 01:27:55 Not-75c6 [mineflayer] plexigras 19a40ca - removed swing arm from bot.activateEntity 2017-06-25 01:27:56 Not-75c6 [mineflayer] rom1504 2eef1cf - Merge pull request #538 from plexigras/fix-537 removed swing arm from bot.activateEntity 2017-06-25 01:38:50 --> zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a rejoint #mcdevs 2017-06-25 02:01:19 <-- gentauro (~gentauro@xd520f27a.cust.hiper.dk) a quitté (Ping timeout: 240 seconds) 2017-06-25 02:03:14 --> gentauro (~gentauro@xd520f27a.cust.hiper.dk) a rejoint #mcdevs 2017-06-25 02:31:19 <-- AJM__ (~AJ@76-219-213-41.lightspeed.irvnca.sbcglobal.net) a quitté (Ping timeout: 260 seconds) 2017-06-25 03:06:02 <-- TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a quitté (Quit: My MacBook has gone to sleep. ZZZzzz…) 2017-06-25 03:10:29 <-- Protocol_7 (~Protocol_@togame.ipwnage.com) a quitté (Quit: Adios) 2017-06-25 03:11:01 --> Protocol_7 (~Protocol_@togame.ipwnage.com) a rejoint #mcdevs 2017-06-25 03:20:54 --> TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a rejoint #mcdevs 2017-06-25 03:23:03 <-- TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a quitté (Client Quit) 2017-06-25 04:07:27 <-- Tux (~tux@unaffiliated/tux) a quitté (Ping timeout: 240 seconds) 2017-06-25 05:21:53 --> AJM__ (~AJ@76-219-213-41.lightspeed.irvnca.sbcglobal.net) a rejoint #mcdevs 2017-06-25 06:22:23 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-06-25 06:23:50 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 240 seconds) 2017-06-25 06:23:51 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2017-06-25 07:14:50 <-- AJM__ (~AJ@76-219-213-41.lightspeed.irvnca.sbcglobal.net) a quitté (Ping timeout: 268 seconds) 2017-06-25 07:20:12 --> AJM__ (~AJ@76-219-213-41.lightspeed.irvnca.sbcglobal.net) a rejoint #mcdevs 2017-06-25 08:00:42 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-25 08:15:47 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Quit: Tachyon_) 2017-06-25 08:16:17 --> wingerse (~winger@123.176.11.50) a rejoint #mcdevs 2017-06-25 08:35:37 <-- UUID02 (~UUID00@BSN-182-165-79.dynamic.siol.net) a quitté (Ping timeout: 255 seconds) 2017-06-25 08:55:32 <-- AJM__ (~AJ@76-219-213-41.lightspeed.irvnca.sbcglobal.net) a quitté (Ping timeout: 255 seconds) 2017-06-25 09:08:25 --> gurnux (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-06-25 09:08:25 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Disconnected by services) 2017-06-25 09:17:42 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-25 09:58:45 wingerse What's the typical time taken for loading/generating a chunk by a minecraft server? 2017-06-25 10:01:03 timmyRS What's the typical time taken for a CPU instruction? 2017-06-25 10:01:26 timmyRS It really depends on the system and processor, so the best answer is "it depends." 2017-06-25 10:06:33 Tachyon_ between 1 ms and 5 minutes 2017-06-25 10:08:41 timmyRS haha, yes, perfect answer. 2017-06-25 10:29:26 --> wingerse_ (~winger@203.104.24.42) a rejoint #mcdevs 2017-06-25 10:32:32 <-- wingerse (~winger@123.176.11.50) a quitté (Ping timeout: 276 seconds) 2017-06-25 10:49:30 <-- wingerse_ (~winger@203.104.24.42) a quitté (Quit: Leaving) 2017-06-25 11:57:41 MiniDigger It also depends on a minecraft server itself and the chunk generator used 2017-06-25 12:08:03 rom1504 it's not because it depends on stuff that a typical time cannot be computed in typical conditions 2017-06-25 12:30:17 --> UUID02 (~UUID00@BSN-182-165-79.dynamic.siol.net) a rejoint #mcdevs 2017-06-25 15:27:46 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Quit: Tachyon_) 2017-06-25 16:40:35 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-25 17:04:48 <-- zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a quitté (Quit: Connection closed for inactivity) 2017-06-25 17:09:35 <-- gurnux (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Quit: Leaving) 2017-06-25 17:09:54 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-06-25 17:45:06 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Remote host closed the connection) 2017-06-25 18:03:12 --> TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a rejoint #mcdevs 2017-06-25 18:03:24 <-- TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a quitté (Client Quit) 2017-06-25 18:25:45 --> gurnux (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-06-25 18:25:45 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Disconnected by services) 2017-06-25 19:13:06 --> TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a rejoint #mcdevs 2017-06-25 19:14:09 <-- TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a quitté (Client Quit) 2017-06-25 19:36:35 --> AJM__ (~AJ@76-219-213-41.lightspeed.irvnca.sbcglobal.net) a rejoint #mcdevs 2017-06-25 19:56:02 <-- gurnux (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Ping timeout: 246 seconds) 2017-06-25 20:09:44 <-- AJM__ (~AJ@76-219-213-41.lightspeed.irvnca.sbcglobal.net) a quitté (Ping timeout: 276 seconds) 2017-06-25 20:39:22 --> AJM__ (~AJ@76-219-213-41.lightspeed.irvnca.sbcglobal.net) a rejoint #mcdevs 2017-06-25 21:35:26 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-06-25 21:51:48 <-- AJM__ (~AJ@76-219-213-41.lightspeed.irvnca.sbcglobal.net) a quitté (Ping timeout: 240 seconds) 2017-06-25 22:05:49 --> AJM__ (~AJ@76-219-213-41.lightspeed.irvnca.sbcglobal.net) a rejoint #mcdevs 2017-06-25 22:13:27 --> gurnux (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-06-25 22:13:28 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Disconnected by services) 2017-06-25 23:08:09 --> TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a rejoint #mcdevs 2017-06-25 23:18:44 <-- Z750 (~Z750@godzilla.destroystokyo.com) a quitté (Quit: Off to make tacos) 2017-06-25 23:19:24 --> Z750 (~Z750@godzilla.destroystokyo.com) a rejoint #mcdevs 2017-06-25 23:36:05 --> itsme_ (~textual@x4d04fda9.dyn.telefonica.de) a rejoint #mcdevs 2017-06-25 23:52:18 <-- AJM__ (~AJ@76-219-213-41.lightspeed.irvnca.sbcglobal.net) a quitté (Ping timeout: 240 seconds) 2017-06-26 00:00:41 --> AJM__ (~AJ@76-219-213-41.lightspeed.irvnca.sbcglobal.net) a rejoint #mcdevs 2017-06-26 00:01:07 <-- TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a quitté (Quit: Textual IRC Client: www.textualapp.com) 2017-06-26 00:05:27 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-06-26 00:06:42 --> redstonehelper__ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-06-26 00:08:38 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 260 seconds) 2017-06-26 00:08:39 -- redstonehelper__ est maintenant connu sous le nom redstonehelper 2017-06-26 00:09:48 <-- redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 240 seconds) 2017-06-26 00:31:59 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Quit: redstonehelper) 2017-06-26 00:36:56 --> zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a rejoint #mcdevs 2017-06-26 01:11:18 <-- AJM__ (~AJ@76-219-213-41.lightspeed.irvnca.sbcglobal.net) a quitté (Ping timeout: 240 seconds) 2017-06-26 01:34:57 <-- gurnux (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Ping timeout: 240 seconds) 2017-06-26 01:37:03 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-06-26 01:48:04 <-- itsme_ (~textual@x4d04fda9.dyn.telefonica.de) a quitté (Quit: Textual IRC Client: www.textualapp.com) 2017-06-26 03:16:32 <-- zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a quitté (Quit: Connection closed for inactivity) 2017-06-26 03:31:18 <-- UUID02 (~UUID00@BSN-182-165-79.dynamic.siol.net) a quitté (Ping timeout: 240 seconds) 2017-06-26 04:17:43 --> oldmanmike (~oldmanmik@pool-108-36-102-227.phlapa.fios.verizon.net) a rejoint #mcdevs 2017-06-26 04:31:26 --> gurnux (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-06-26 04:31:26 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Disconnected by services) 2017-06-26 04:55:48 <-- NathanWolf (~nathan@216-235-101-HCC-80.hcc.net) a quitté (Quit: NathanWolf) 2017-06-26 05:52:15 --> AJM__ (~AJ@76-219-213-41.lightspeed.irvnca.sbcglobal.net) a rejoint #mcdevs 2017-06-26 06:05:33 --> AJM (~AJ@76-219-213-41.lightspeed.irvnca.sbcglobal.net) a rejoint #mcdevs 2017-06-26 06:06:18 <-- AJM__ (~AJ@76-219-213-41.lightspeed.irvnca.sbcglobal.net) a quitté (Ping timeout: 240 seconds) 2017-06-26 06:17:51 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-06-26 06:18:41 <-- gurnux (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Ping timeout: 246 seconds) 2017-06-26 06:31:05 <-- oldmanmike (~oldmanmik@pool-108-36-102-227.phlapa.fios.verizon.net) a quitté (Ping timeout: 255 seconds) 2017-06-26 07:05:54 <-- protryon (~protryon@c-67-180-93-98.hsd1.ca.comcast.net) a quitté (Quit: WeeChat 1.7-rc2) 2017-06-26 07:15:00 <-- AJM (~AJ@76-219-213-41.lightspeed.irvnca.sbcglobal.net) a quitté 2017-06-26 07:42:06 pokechu22 Oh, just a note: I've been doing a lot of research lately into entity metadata. It seems that the metadata for monster aggression is more complicated than previously thought; I'm trying to figure out everything and get the wiki and MCP updated as I figure stuff out 2017-06-26 07:42:47 pokechu22 For instance, AbstractSkeleton's "Is swinging arms" actually also controls whether the skeleton goes into the bow usage model. 2017-06-26 08:43:47 pokechu22 Illager flags as they currently are on the wiki are wrong, will correct it once I figure out the right ones 2017-06-26 09:47:51 --> gurnux (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-06-26 09:47:51 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Disconnected by services) 2017-06-26 09:56:39 --> UUID02 (~UUID00@BSN-182-165-79.dynamic.siol.net) a rejoint #mcdevs 2017-06-26 10:08:19 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-06-26 10:10:20 <-- gurnux (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Ping timeout: 240 seconds) 2017-06-26 11:39:45 <-- Andrio (Andrio@questers-rest.andriocelos.ml) a quitté (Ping timeout: 255 seconds) 2017-06-26 11:40:21 --> Andrio (~Andrio@questers-rest.andriocelos.ml) a rejoint #mcdevs 2017-06-26 12:38:02 --> Corvus (Andrio@questers-rest.andriocelos.ml) a rejoint #mcdevs 2017-06-26 12:38:26 -- Corvus est maintenant connu sous le nom Guest50103 2017-06-26 12:38:26 <-- Andrio (~Andrio@questers-rest.andriocelos.ml) a quitté (Ping timeout: 258 seconds) 2017-06-26 12:53:01 -- Guest50103 est maintenant connu sous le nom Andrio 2017-06-26 13:03:29 --> TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a rejoint #mcdevs 2017-06-26 13:18:28 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Disconnected by services) 2017-06-26 13:18:28 --> gurnux (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-06-26 13:40:57 <-- gurnux (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Quit: Leaving) 2017-06-26 13:41:10 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-06-26 14:01:24 <-- LaxWasHere (~Lax@deathtopennies.org) a quitté (Ping timeout: 246 seconds) 2017-06-26 14:32:58 --> LaxWasHere (~Lax@2607:5300:60:48d7::) a rejoint #mcdevs 2017-06-26 14:47:12 --> zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a rejoint #mcdevs 2017-06-26 14:55:40 Not-75c6 [mineflayer] rom1504 pushed 5 commits to master [+2/-0/±6] https://github.com/PrismarineJS/mineflayer/compare/2eef1cf88a8a...3e3d596a16b8 2017-06-26 14:55:42 Not-75c6 [mineflayer] plexigras 3ad392b - added plugin loader 2017-06-26 14:55:43 Not-75c6 [mineflayer] plexigras 2eb8dc7 - added plugin loader functions to documentation 2017-06-26 14:55:45 Not-75c6 [mineflayer] plexigras a2a2ea0 - fixed typo 2017-06-26 14:55:46 Not-75c6 [mineflayer] ... and 2 more commits. 2017-06-26 15:14:24 <-- TheNet (~TheNet@pool-108-30-113-194.nycmny.fios.verizon.net) a quitté (Read error: Connection reset by peer) 2017-06-26 16:07:40 rom1504 is it possible to change between online and offline mode in the vanilla server without restarting it ? 2017-06-26 16:18:00 timmyRS rom1504, you can't change any settings without restarting the server, even tho if you were to modify the source it would be possible, but that would then not be the vanilla server any more. 2017-06-26 16:19:47 rom1504 ok 2017-06-26 16:28:58 --> NathanWolf (~nathan@216-235-101-HCC-80.hcc.net) a rejoint #mcdevs 2017-06-26 17:51:51 <-- dexter0 (~dexter0@2601:647:4502:8c00:e898:987a:913e:7f7d) a quitté (Ping timeout: 240 seconds) 2017-06-26 17:54:36 --> dexter0 (~dexter0@2601:647:4502:8c00:54a3:4e14:cbfa:3df8) a rejoint #mcdevs 2017-06-26 19:16:06 --> redstonehelper (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-06-26 19:25:50 <-- NathanWolf (~nathan@216-235-101-HCC-80.hcc.net) a quitté (Quit: NathanWolf) 2017-06-26 19:27:47 --> NathanWolf (~nathan@216-235-101-HCC-80.hcc.net) a rejoint #mcdevs 2017-06-26 20:18:25 --> gurnux (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-06-26 20:18:25 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Disconnected by services) 2017-06-26 20:29:55 Not-75c6 [mineflayer] rom1504 pushed 1 commit to master [+0/-0/±2] https://github.com/PrismarineJS/mineflayer/compare/3e3d596a16b8...b82651b8c77a 2017-06-26 20:29:56 Not-75c6 [mineflayer] rom1504 b82651b - Release 2.5.0 2017-06-26 20:29:58 Not-75c6 [mineflayer] rom1504 tagged b82651b as 2.5.0 https://github.com/PrismarineJS/mineflayer/commit/b82651b8c77a3b0ec1ad87d6469a8a625fa56a8f 2017-06-26 20:56:09 Not-75c6 [minecraft-data] rom1504 pushed 5 commits to master [+21/-7/±8] https://github.com/PrismarineJS/minecraft-data/compare/e604291bd6b9...3e5ae3b696ce 2017-06-26 20:56:10 Not-75c6 [minecraft-data] rom1504 3e5ae3b - Merge pull request #183 from PrismarineJS/lang add language files 2017-06-26 20:58:49 Not-75c6 [minecraft-data] rom1504 pushed 1 commit to master [+0/-0/±1] https://github.com/PrismarineJS/minecraft-data/compare/3e5ae3b696ce...4d31c08c58c0 2017-06-26 20:58:50 Not-75c6 [minecraft-data] rom1504 4d31c08 - Release 2.19.0 2017-06-26 20:58:56 Not-75c6 [minecraft-data] rom1504 tagged 4d31c08 as 2.19.0 https://github.com/PrismarineJS/minecraft-data/commit/4d31c08c58c0f738faa1735471a1b5f113775fbc 2017-06-26 21:31:03 <-- ChanServ (ChanServ@services.) a quitté (shutting down) 2017-06-26 21:36:09 --> ChanServ (ChanServ@services.) a rejoint #mcdevs 2017-06-26 21:36:09 -- Mode #mcdevs [+o ChanServ] par niven.freenode.net 2017-06-26 21:39:28 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-06-26 21:42:51 <-- gurnux (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Ping timeout: 240 seconds) 2017-06-27 00:31:24 --> Akaibu (uid118096@gateway/web/irccloud.com/x-ybpvwarofiqqwoxb) a rejoint #mcdevs 2017-06-27 00:53:20 --> oldmanmike (~oldmanmik@pool-108-36-102-227.phlapa.fios.verizon.net) a rejoint #mcdevs 2017-06-27 00:56:36 --> Black_Hole (~BlackHole@p2003007E4F578A002D5ACE16F51AB982.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-06-27 01:00:12 <-- Black-Hole (~BlackHole@p2003007E4F578A00B886E1CD899BBCB7.dip0.t-ipconnect.de) a quitté (Ping timeout: 240 seconds) 2017-06-27 02:11:10 <-- oldmanmike (~oldmanmik@pool-108-36-102-227.phlapa.fios.verizon.net) a quitté (Ping timeout: 260 seconds) 2017-06-27 02:49:10 <-- Guest71302 (~Me4502@owexz.net) a quitté (Changing host) 2017-06-27 02:49:10 --> Guest71302 (~Me4502@unaffiliated/me4502) a rejoint #mcdevs 2017-06-27 02:49:13 -- Guest71302 est maintenant connu sous le nom Me4502 2017-06-27 03:19:17 pokechu22 OK, here's the result of that research I did: https://github.com/ModCoderPack/MCPBot-Issues/issues/465. Still need to update the wiki 2017-06-27 03:58:24 <-- Akaibu (uid118096@gateway/web/irccloud.com/x-ybpvwarofiqqwoxb) a quitté (Quit: Connection closed for inactivity) 2017-06-27 04:21:02 <-- UUID02 (~UUID00@BSN-182-165-79.dynamic.siol.net) a quitté (Ping timeout: 255 seconds) 2017-06-27 05:34:24 <-- williammck (~williammc@unaffiliated/williammck) a quitté (Quit: No highs, no lows, must be Bose!) 2017-06-27 06:48:20 --> oldmanmike (~oldmanmik@pool-108-36-102-227.phlapa.fios.verizon.net) a rejoint #mcdevs 2017-06-27 06:54:56 <-- oldmanmike (~oldmanmik@pool-108-36-102-227.phlapa.fios.verizon.net) a quitté (Ping timeout: 276 seconds) 2017-06-27 06:59:19 <-- bildramer (~bildramer@p2E5141D5.dip0.t-ipconnect.de) a quitté (Quit: alway rember happy day) 2017-06-27 07:00:02 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-06-27 07:02:05 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 276 seconds) 2017-06-27 07:02:05 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2017-06-27 07:07:28 <-- |Blaze| (~scott@S010690e2badc6fd2.ed.shawcable.net) a quitté (Ping timeout: 240 seconds) 2017-06-27 07:13:48 --> Botched_ (~Botched@unaffiliated/mustek/bot/botched) a rejoint #mcdevs 2017-06-27 07:13:56 --> Techcable_ (znc@irc.techcable.net) a rejoint #mcdevs 2017-06-27 07:14:18 <-- Botched (~Botched@unaffiliated/mustek/bot/botched) a quitté (Ping timeout: 260 seconds) 2017-06-27 07:14:18 -- Botched_ est maintenant connu sous le nom Botched 2017-06-27 07:14:18 <-- Techcable (znc@irc.techcable.net) a quitté (Ping timeout: 260 seconds) 2017-06-27 07:14:20 <-- fl4sh_ (~fl4sh@s3.jsje.de) a quitté (Ping timeout: 260 seconds) 2017-06-27 07:14:20 <-- zml (~zml@morgoth.aoeu.xyz) a quitté (Ping timeout: 260 seconds) 2017-06-27 07:14:21 --> fl4sh_ (~fl4sh@s3.jsje.de) a rejoint #mcdevs 2017-06-27 07:14:51 <-- Morrolan (morrolan@znc.morrolan.ch) a quitté (Ping timeout: 260 seconds) 2017-06-27 07:15:25 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Disconnected by services) 2017-06-27 07:15:25 --> gurnux (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-06-27 07:15:55 --> Morrolan (morrolan@znc.morrolan.ch) a rejoint #mcdevs 2017-06-27 07:17:25 <-- EW8GU (admin@ho.by) a quitté (Ping timeout: 260 seconds) 2017-06-27 07:17:26 <-- Voltasalt (~Voltasalt@5.101.100.240) a quitté (Ping timeout: 260 seconds) 2017-06-27 07:19:37 --> Voltasalt (~Voltasalt@5.101.100.240) a rejoint #mcdevs 2017-06-27 07:25:46 --> zml (~zml@morgoth.aoeu.xyz) a rejoint #mcdevs 2017-06-27 07:36:26 --> Fador_ (fador@hentai.fi) a rejoint #mcdevs 2017-06-27 07:37:46 --> MrARM_ (~MrARM@unaffiliated/mrarm) a rejoint #mcdevs 2017-06-27 07:39:16 --> dranghek (~darngeek@bouncer.pocketmine.net) a rejoint #mcdevs 2017-06-27 07:39:34 <-- Fador (fador@hentai.fi) a quitté (Ping timeout: 260 seconds) 2017-06-27 07:39:34 <-- MrARM (~MrARM@unaffiliated/mrarm) a quitté (Ping timeout: 260 seconds) 2017-06-27 07:39:35 -- MrARM_ est maintenant connu sous le nom MrARM 2017-06-27 07:39:35 <-- darngeek (~darngeek@bouncer.pocketmine.net) a quitté (Ping timeout: 260 seconds) 2017-06-27 07:39:35 <-- fl4sh_ (~fl4sh@s3.jsje.de) a quitté (Ping timeout: 260 seconds) 2017-06-27 07:40:53 --> fl4sh_ (~fl4sh@s3.jsje.de) a rejoint #mcdevs 2017-06-27 07:42:17 <-- offbeatwitch (~offbeatwi@163.172.169.69) a quitté (Ping timeout: 240 seconds) 2017-06-27 07:42:30 <-- Grum (~grum@irc.grum.nl) a quitté (Ping timeout: 260 seconds) 2017-06-27 07:42:48 --> Grum (~grum@irc.grum.nl) a rejoint #mcdevs 2017-06-27 07:42:48 -- Mode #mcdevs [+v Grum] par ChanServ 2017-06-27 07:43:25 --> offbeatwitch (~offbeatwi@163.172.169.69) a rejoint #mcdevs 2017-06-27 07:53:50 -- Fador_ est maintenant connu sous le nom Fador 2017-06-27 07:53:56 -- Mode #mcdevs [+v Fador] par ChanServ 2017-06-27 08:13:22 --> williammck (~williammc@irc.williammck.net) a rejoint #mcdevs 2017-06-27 08:13:22 <-- williammck (~williammc@irc.williammck.net) a quitté (Changing host) 2017-06-27 08:13:22 --> williammck (~williammc@unaffiliated/williammck) a rejoint #mcdevs 2017-06-27 08:28:31 <-- gurnux (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Quit: Leaving) 2017-06-27 08:28:52 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-06-27 09:20:26 --> EW8GU (admin@ho.by) a rejoint #mcdevs 2017-06-27 09:24:20 <-- johni0702 (johni0702@johni0702.de) a quitté (Ping timeout: 240 seconds) 2017-06-27 09:35:36 --> johni0702 (johni0702@johni0702.de) a rejoint #mcdevs 2017-06-27 10:39:20 --> UUID02 (~UUID00@BSN-182-165-79.dynamic.siol.net) a rejoint #mcdevs 2017-06-27 11:29:27 rom1504 where are the language file downloaded from ? (for other languages than en_us) 2017-06-27 11:30:34 --> DemonWav_ (~DemonWav@unaffiliated/demonwav) a rejoint #mcdevs 2017-06-27 11:30:43 --> clud_ (~clueless@d54c5e19c.access.telenet.be) a rejoint #mcdevs 2017-06-27 11:33:59 --> Voltasalt_ (~Voltasalt@5.101.100.240) a rejoint #mcdevs 2017-06-27 11:35:20 <-- zml (~zml@morgoth.aoeu.xyz) a quitté (*.net *.split) 2017-06-27 11:35:20 <-- Voltasalt (~Voltasalt@5.101.100.240) a quitté (*.net *.split) 2017-06-27 11:35:22 <-- DemonWav (~DemonWav@unaffiliated/demonwav) a quitté (*.net *.split) 2017-06-27 11:35:22 <-- clud (~clueless@d54C5E19C.access.telenet.be) a quitté (*.net *.split) 2017-06-27 11:35:23 <-- Amaranth (~Amaranth@ubuntu/member/Amaranth) a quitté (*.net *.split) 2017-06-27 11:35:23 -- Voltasalt_ est maintenant connu sous le nom Voltasalt 2017-06-27 11:38:10 <-- EW8GU (admin@ho.by) a quitté (Ping timeout: 260 seconds) 2017-06-27 11:41:40 --> zml (~zml@morgoth.aoeu.xyz) a rejoint #mcdevs 2017-06-27 11:41:57 --> Amaranth (~Amaranth@ubuntu/member/Amaranth) a rejoint #mcdevs 2017-06-27 11:41:57 -- Mode #mcdevs [+v Amaranth] par ChanServ 2017-06-27 11:49:30 kashike rom1504: same place all the other client assets (sounds, etc) come from. http://wiki.vg/Game_files#Assets 2017-06-27 11:49:52 MiniDigger https://s3.amazonaws.com/Minecraft.Download/indexes/1.12.json for index, then you can use the hash the generate the url 2017-06-27 11:49:55 MiniDigger basically ^^^^ 2017-06-27 11:50:46 MiniDigger this is de_DE.lang for 1.12 for example http://resources.download.minecraft.net/11/11131a85e946ea9c7b703ff26ff29de18ba8bbb0 2017-06-27 12:10:55 +Dinnerbone (But please don't use the s3 url for anything) 2017-06-27 12:13:09 rom1504 Ok, thanks 2017-06-27 12:38:02 --> kyguo (~kyguo@58.250.250.121) a rejoint #mcdevs 2017-06-27 12:39:58 ScruffyRules (Dinnerbone, why not? justcurious) 2017-06-27 12:48:03 MiniDigger Is there another way to get the index other than via s3? That's the only one on wiki.vg 2017-06-27 12:58:32 +Dinnerbone You can find all the versions here: https://launchermeta.mojang.com/mc/game/version_manifest.json then follow the url to the version you want, for example, 1.12 is https://launchermeta.mojang.com/mc/game/71579a8bd04a542218613d8015aaf386b84c6ba1/1.12.json - then it has the url for the asset index or anything else you need. 2017-06-27 13:01:23 MiniDigger oh, didn't see the asset index in version file 2017-06-27 13:01:41 +Dinnerbone There's no hardcoded urls other than the manifest now 2017-06-27 13:07:33 +Dinnerbone I think all the s3 urls should be removed from the wiki 2017-06-27 13:07:47 +Dinnerbone We won't continue supporting s3 forever. No plans to shut it down right now, but, one day! 2017-06-27 13:08:05 MiniDigger currently adujusting some stuff 2017-06-27 13:08:16 +Dinnerbone Plus the new route is much faster, updates quicker, easier to cache 2017-06-27 13:41:27 --> EW8GU (admin@ho.by) a rejoint #mcdevs 2017-06-27 14:08:36 <-- Amaranth (~Amaranth@ubuntu/member/Amaranth) a quitté (Remote host closed the connection) 2017-06-27 14:08:56 --> Amaranth (~Amaranth@ubuntu/member/Amaranth) a rejoint #mcdevs 2017-06-27 14:08:56 -- Mode #mcdevs [+v Amaranth] par ChanServ 2017-06-27 14:18:04 Not-75c6 [Jawa] TkTech pushed 5 commits to master [+0/-0/±6] https://github.com/TkTech/Jawa/compare/9743e2ec0663...fea01e41540b 2017-06-27 14:18:06 Not-75c6 [Jawa] pombredanne c5db1e9 - Speed up character processing with list buffer * Characters are appended to a list buffer and converted to a unicode string at the end at once. This speeds up string processing when there is a large number of characters to decode and avoids the creation of many small intermediate strings. Signed-off-by: Philippe Ombredanne 2017-06-27 14:18:07 Not-75c6 [Jawa] TkTech 57c5f24 - Fix PEP8 violations in test_modified_utf8.py 2017-06-27 14:18:09 Not-75c6 [Jawa] TkTech 8df5eff - Ensure pytest-cov is installed when tests are run. 2017-06-27 14:18:10 Not-75c6 [Jawa] ... and 2 more commits. 2017-06-27 15:00:14 Not-75c6 [Jawa] TkTech pushed 1 commit to master [+1/-0/±0] https://github.com/TkTech/Jawa/compare/fea01e41540b...98d35b9f5313 2017-06-27 15:00:15 Not-75c6 [Jawa] TkTech 98d35b9 - Add circleci configuration. 2017-06-27 15:18:28 --> gurnux (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-06-27 15:18:28 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Disconnected by services) 2017-06-27 15:47:22 --> |Blaze| (~scott@S010690e2badc6fd2.ed.shawcable.net) a rejoint #mcdevs 2017-06-27 16:42:18 --> bildramer (~bildramer@p200300ED83CC7F0078F57C556A1BBBE9.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-06-27 18:43:35 <-- gurnux (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Quit: Leaving) 2017-06-27 18:43:48 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-06-27 20:17:19 <-- dexter0 (~dexter0@2601:647:4502:8c00:54a3:4e14:cbfa:3df8) a quitté (Ping timeout: 246 seconds) 2017-06-27 20:23:24 --> dexter0 (~dexter0@2601:647:4502:8c00:8136:4b6c:6ee6:a1b3) a rejoint #mcdevs 2017-06-27 20:38:03 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Disconnected by services) 2017-06-27 20:38:03 --> gurnux (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-06-27 21:36:01 <-- pokechu22 (~pokechu22@50.35.67.138) a quitté (Remote host closed the connection) 2017-06-27 21:37:02 --> pokechu22 (~pokechu22@50.35.67.138) a rejoint #mcdevs 2017-06-27 21:53:08 --> froglegstew (~froglegst@138.197.141.235) a rejoint #mcdevs 2017-06-27 22:01:14 <-- kyguo (~kyguo@58.250.250.121) a quitté (Read error: Connection reset by peer) 2017-06-27 22:02:58 --> kyguo (~kyguo@58.250.250.121) a rejoint #mcdevs 2017-06-27 22:03:45 <-- froglegstew (~froglegst@138.197.141.235) a quitté (Quit: ZNC 1.6.5 - http://znc.in) 2017-06-27 22:05:30 --> froglegstew (~froglegst@138.197.141.235) a rejoint #mcdevs 2017-06-27 22:19:07 <-- Botched (~Botched@unaffiliated/mustek/bot/botched) a quitté (Ping timeout: 246 seconds) 2017-06-27 22:19:40 --> Botched (~Botched@unaffiliated/mustek/bot/botched) a rejoint #mcdevs 2017-06-27 22:26:17 --> Akaibu (uid118096@gateway/web/irccloud.com/x-iwzwaolickoiacug) a rejoint #mcdevs 2017-06-27 23:07:49 --> dookoo782 (~jayms@host86-160-66-74.range86-160.btcentralplus.com) a rejoint #mcdevs 2017-06-27 23:31:20 --> Redrield_ (Redrield@when.will.i.stop.getting.kicked.redrield.com) a rejoint #mcdevs 2017-06-27 23:33:15 Redrield_ Not sure why, but for some reason when I run runClient, my mod doesn't load. Seems there's half a crash log in there, but it gets cut off 2017-06-27 23:33:18 Redrield_ https://hasteb.in/equyuyokav.hs 2017-06-27 23:53:10 --> _Gjum (25782afe@gateway/web/freenode/ip.37.120.42.254) a rejoint #mcdevs 2017-06-28 00:15:48 _Gjum hi, what block properties determine the sound they make when being broken? is it a 1:1 mapping to their material property? 2017-06-28 00:22:09 <-- Mustek (~Mustek@steamdb/supporter/mustek) a quitté (Quit: ZNC - http://znc.in) 2017-06-28 00:22:09 <-- Botched (~Botched@unaffiliated/mustek/bot/botched) a quitté (Quit: ZNC - http://znc.in) 2017-06-28 00:22:22 --> Botched (~Botched@unaffiliated/mustek/bot/botched) a rejoint #mcdevs 2017-06-28 00:24:23 --> Mustek (~Mustek@steamdb/supporter/mustek) a rejoint #mcdevs 2017-06-28 00:24:23 <-- EW8GU (admin@ho.by) a quitté (Read error: Connection reset by peer) 2017-06-28 00:29:10 <-- Mustek (~Mustek@steamdb/supporter/mustek) a quitté (Remote host closed the connection) 2017-06-28 00:29:10 <-- Botched (~Botched@unaffiliated/mustek/bot/botched) a quitté (Remote host closed the connection) 2017-06-28 00:30:00 --> Botched (~Botched@unaffiliated/mustek/bot/botched) a rejoint #mcdevs 2017-06-28 00:30:22 --> EW8GU (admin@ho.by) a rejoint #mcdevs 2017-06-28 00:31:31 --> Mustek (~Mustek@steamdb/supporter/mustek) a rejoint #mcdevs 2017-06-28 00:35:37 <-- Akaibu (uid118096@gateway/web/irccloud.com/x-iwzwaolickoiacug) a quitté (Quit: Connection closed for inactivity) 2017-06-28 00:40:11 <-- gurnux (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Ping timeout: 260 seconds) 2017-06-28 00:51:05 pokechu22 Redrield_: That crash log's normal, " 2017-06-28 00:51:07 pokechu22 This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR" 2017-06-28 00:51:34 pokechu22 I don't know the details of forge, so I'm not sure why it's not loading it - make sure you have an mcmod.info file and all that 2017-06-28 00:54:49 pokechu22 _Gjum: no, it's not 1:1. Look for the SoundType enum and calls to setSoundType 2017-06-28 00:56:23 --> _Gjum_ (25782afe@gateway/web/freenode/ip.37.120.42.254) a rejoint #mcdevs 2017-06-28 00:57:42 <-- _Gjum (25782afe@gateway/web/freenode/ip.37.120.42.254) a quitté (Ping timeout: 260 seconds) 2017-06-28 00:58:48 pokechu22 _Gjum_ (in case you missed that): no, it's not 1:1. Look for the SoundType enum and calls to setSoundType 2017-06-28 00:59:47 Redrield_ pokechu22: I definitely have an mcmod.info 2017-06-28 01:00:01 Redrield_ Only difference from normal is that I'm using Kotlin instead of Java 2017-06-28 01:00:16 Redrield_ Would that have any affect on the way Forge can load it? I would assume not but it doesn't hurt to check 2017-06-28 01:01:08 _Gjum_ yeah I missed that, connection died. thanks for repeating <3 I'll have a look at the source then, thanks 2017-06-28 01:02:41 --> Akaibu (uid118096@gateway/web/irccloud.com/x-bqjkzwdthbqosmqz) a rejoint #mcdevs 2017-06-28 01:04:25 pokechu22 Don't think so, assuming gradle's set up right... but again, this isn't my area of expertise 2017-06-28 01:07:44 <-- _Gjum_ (25782afe@gateway/web/freenode/ip.37.120.42.254) a quitté (Quit: bye) 2017-06-28 01:28:02 <-- dookoo782 (~jayms@host86-160-66-74.range86-160.btcentralplus.com) a quitté 2017-06-28 03:02:51 --> oldmanmike (~oldmanmik@pool-108-36-102-227.phlapa.fios.verizon.net) a rejoint #mcdevs 2017-06-28 03:15:37 <-- Akaibu (uid118096@gateway/web/irccloud.com/x-bqjkzwdthbqosmqz) a quitté (Quit: Connection closed for inactivity) 2017-06-28 03:23:29 chibill Redrield_ [17:31:56] [Client thread/WARN] [FML]: Zip file ForgeKotlinTest-1.0-SNAPSHOT.jar failed to read properly, it will be ignored seems to say your jar is borked 2017-06-28 03:52:13 pokechu22 Huh 2017-06-28 03:53:26 <-- kyguo (~kyguo@58.250.250.121) a quitté (Quit: Leaving) 2017-06-28 03:53:31 --> kyguo2 (~kyguo@58.250.250.121) a rejoint #mcdevs 2017-06-28 03:54:12 pokechu22 Oh, "java.lang.RuntimeException: Empty reference" in FML 2017-06-28 03:55:44 pokechu22 Can you upload your mcmod.info file? 2017-06-28 03:59:20 <-- UUID02 (~UUID00@BSN-182-165-79.dynamic.siol.net) a quitté (Ping timeout: 260 seconds) 2017-06-28 04:33:59 <-- XorBoole (~XorBoole@45.55.68.177) a quitté (Ping timeout: 260 seconds) 2017-06-28 04:34:57 <-- dranghek (~darngeek@bouncer.pocketmine.net) a quitté (Ping timeout: 255 seconds) 2017-06-28 04:34:57 <-- MrARM (~MrARM@unaffiliated/mrarm) a quitté (Ping timeout: 255 seconds) 2017-06-28 04:36:06 <-- Adam (Adam@unaffiliated/adam-) a quitté (Ping timeout: 268 seconds) 2017-06-28 04:36:28 --> Adam (~Adam@unaffiliated/adam-) a rejoint #mcdevs 2017-06-28 04:38:35 --> darngeek (~darngeek@bouncer.pocketmine.net) a rejoint #mcdevs 2017-06-28 04:38:45 --> XorBoole (~XorBoole@45.55.68.177) a rejoint #mcdevs 2017-06-28 04:40:05 --> MrARM (~MrARM@unaffiliated/mrarm) a rejoint #mcdevs 2017-06-28 05:04:16 <-- bswartz (~bswartz@98.122.139.152) a quitté (Ping timeout: 240 seconds) 2017-06-28 05:32:07 <-- zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a quitté (Quit: Connection closed for inactivity) 2017-06-28 05:56:50 <-- oldmanmike (~oldmanmik@pool-108-36-102-227.phlapa.fios.verizon.net) a quitté (Ping timeout: 240 seconds) 2017-06-28 06:06:53 <-- kyguo2 (~kyguo@58.250.250.121) a quitté (Ping timeout: 240 seconds) 2017-06-28 06:07:19 --> kyguo2 (~kyguo@58.250.250.121) a rejoint #mcdevs 2017-06-28 06:23:59 <-- kyguo2 (~kyguo@58.250.250.121) a quitté (Quit: Leaving) 2017-06-28 06:59:20 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-06-28 07:00:10 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 260 seconds) 2017-06-28 07:00:10 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2017-06-28 08:37:09 <-- bildramer (~bildramer@p200300ED83CC7F0078F57C556A1BBBE9.dip0.t-ipconnect.de) a quitté (Quit: alway rember happy day) 2017-06-28 08:42:32 --> bildramer (~bildramer@p200300ED83CC7F0000566F0333BF7047.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-06-28 10:34:26 <-- bildramer (~bildramer@p200300ED83CC7F0000566F0333BF7047.dip0.t-ipconnect.de) a quitté (Quit: alway rember happy day) 2017-06-28 10:38:59 Not-75c6 [mineflayer] rom1504 pushed 15 commits to master [+3/-1/±19] https://github.com/PrismarineJS/mineflayer/compare/b82651b8c77a...a6a90b550134 2017-06-28 10:39:01 Not-75c6 [mineflayer] plexigras ef60f42 - added modt and ansi formating capabilities 2017-06-28 10:39:02 Not-75c6 [mineflayer] plexigras 4dc97a6 - addeed ansi.js example 2017-06-28 10:39:04 Not-75c6 [mineflayer] plexigras 5454855 - fixed ChatMessage this.with mapping 2017-06-28 10:39:05 Not-75c6 [mineflayer] ... and 12 more commits. 2017-06-28 11:04:31 --> UUID02 (~UUID00@BSN-182-165-79.dynamic.siol.net) a rejoint #mcdevs 2017-06-28 12:26:05 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-28 12:34:01 <-- Mustek (~Mustek@steamdb/supporter/mustek) a quitté (Ping timeout: 268 seconds) 2017-06-28 12:39:16 --> Mustek (~Mustek@steamdb/supporter/mustek) a rejoint #mcdevs 2017-06-28 13:09:07 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Quit: Tachyon_) 2017-06-28 13:13:09 --> oldmanmike (~oldmanmik@pool-108-36-102-227.phlapa.fios.verizon.net) a rejoint #mcdevs 2017-06-28 13:57:50 <-- oldmanmike (~oldmanmik@pool-108-36-102-227.phlapa.fios.verizon.net) a quitté (Ping timeout: 240 seconds) 2017-06-28 15:14:45 --> zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a rejoint #mcdevs 2017-06-28 15:20:31 <-- samschaap (~samschaap@5469BF1F.cm-12-2c.dynamic.ziggo.nl) a quitté (Ping timeout: 240 seconds) 2017-06-28 15:29:41 --> samschaap (~samschaap@5469BF1F.cm-12-2c.dynamic.ziggo.nl) a rejoint #mcdevs 2017-06-28 15:41:57 --> bildramer (~bildramer@p200300ED83CC7F007D68F758FEA3FA2E.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-06-28 16:12:51 Not-75c6 [mineflayer] rom1504 pushed 5 commits to master [+2/-0/±136] https://github.com/PrismarineJS/mineflayer/compare/a6a90b550134...2d5e3e98360c 2017-06-28 16:12:53 Not-75c6 [mineflayer] plexigras 8a509b7 - added eslint 2017-06-28 16:12:54 Not-75c6 [mineflayer] plexigras b6978e2 - es6ified src 2017-06-28 16:12:56 Not-75c6 [mineflayer] plexigras 28b2102 - es6ified examples 2017-06-28 16:12:58 Not-75c6 [mineflayer] ... and 2 more commits. 2017-06-28 16:13:54 Not-75c6 [mineflayer] rom1504 pushed 1 commit to master [+0/-1/±0] https://github.com/PrismarineJS/mineflayer/compare/2d5e3e98360c...431d6a334cc5 2017-06-28 16:13:55 Not-75c6 [mineflayer] rom1504 431d6a3 - Delete .jshintrc 2017-06-28 16:14:54 timmyRS Why are all commits to mineflayer broadcasted here? 2017-06-28 16:18:26 --> bswartz (~bswartz@98.122.139.152) a rejoint #mcdevs 2017-06-28 17:15:23 rom1504 because mineflayer is subscribe for #mcdevs on http://n.tkte.ch/ , like a bunch of other minecraft projects 2017-06-28 17:16:04 rom1504 (not enough though, are they all dead now ? there used to be much more commit activity here) 2017-06-28 17:17:31 timmyRS I'd find it good if there were no commit activity. I love seeing projects for Minecraft be developed, but I don't want to see their commits on an IRC chat I have notifications on for. ^^ 2017-06-28 17:22:47 rom1504 I guess we don't use irc the same way 2017-06-28 17:28:33 <-- dexter0 (~dexter0@2601:647:4502:8c00:8136:4b6c:6ee6:a1b3) a quitté (Ping timeout: 240 seconds) 2017-06-28 17:31:01 timmyRS Well I use IRC as a way to chat with people who are interested in the same things as me 2017-06-28 17:34:29 +Prf_Jakob timmyRS: If the bots gets in the way of chatting we will remove them. 2017-06-28 17:34:48 +Prf_Jakob Right now they don't 2017-06-28 17:35:18 timmyRS Well ok then, I just found out my IRC client has an ignore feature 2017-06-28 17:35:26 timmyRS I hope Not-75c6 is only a bot 2017-06-28 17:36:28 +Prf_Jakob It is :) 2017-06-28 17:36:51 +Prf_Jakob timmyRS: its powered by http://n.tkte.ch/ 2017-06-28 17:37:23 timmyRS Anyways, does anyone know what ping ms values equalate to what sprite, e.g. in the server list? 2017-06-28 17:38:30 +SinZ timmyRS: the 4 characters at the end are randomized btw 2017-06-28 17:39:09 timmyRS And the "Not-" stands for Notification or Notify, if I'm correct 2017-06-28 17:39:14 +SinZ Notifico 2017-06-28 17:49:47 timmyRS Well the Minecraft source code answered my question. I have to send a ping below 0 for the client to show as if the client has no connection at all. 2017-06-28 18:24:05 --> dexter0 (~dexter0@2601:647:4502:8c00:dd54:e5f9:1c32:d299) a rejoint #mcdevs 2017-06-28 19:15:32 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-06-28 20:05:20 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Ping timeout: 240 seconds) 2017-06-28 20:19:20 <-- SpaceManiac (~SpaceMani@c-73-235-50-40.hsd1.ca.comcast.net) a quitté (Ping timeout: 260 seconds) 2017-06-28 20:23:56 --> SpaceManiac (~SpaceMani@c-73-235-50-40.hsd1.ca.comcast.net) a rejoint #mcdevs 2017-06-28 20:23:57 -- Mode #mcdevs [+v SpaceManiac] par ChanServ 2017-06-28 20:24:27 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-06-28 20:43:15 <-- SpaceManiac (~SpaceMani@c-73-235-50-40.hsd1.ca.comcast.net) a quitté (Ping timeout: 240 seconds) 2017-06-28 20:48:13 --> SpaceManiac (~SpaceMani@c-73-235-50-40.hsd1.ca.comcast.net) a rejoint #mcdevs 2017-06-28 20:48:13 -- Mode #mcdevs [+v SpaceManiac] par ChanServ 2017-06-28 20:49:12 <-- Botched (~Botched@unaffiliated/mustek/bot/botched) a quitté (Ping timeout: 268 seconds) 2017-06-28 20:49:49 <-- Mustek (~Mustek@steamdb/supporter/mustek) a quitté (Ping timeout: 268 seconds) 2017-06-28 20:51:41 --> Botched (~Botched@unaffiliated/mustek/bot/botched) a rejoint #mcdevs 2017-06-28 20:52:10 --> Mustek (~Mustek@steamdb/supporter/mustek) a rejoint #mcdevs 2017-06-28 21:16:16 Not-75c6 [GitHub] Avoid administrative distraction. 2017-06-28 21:16:39 chibill ew... 2017-06-28 21:17:20 Hafydd From the expert at avoiding distraction. 2017-06-28 21:20:44 Not-75c6 [PyMine] chibill pushed 1 commit to master [+14/-0/±1] https://github.com/chibill/PyMine/compare/83c1742a51fd...136cae7768ac 2017-06-28 21:20:45 Not-75c6 [PyMine] chibill 136cae7 - First Commit Alot of stuff done already! 2017-06-28 21:20:48 chibill ;p 2017-06-28 21:21:16 chibill I only ever going to push that repo once a month. ;p 2017-06-28 21:28:06 --> m0r13 (~m0r13@2a01:4f8:201:8174:73:0:b00b:135) a rejoint #mcdevs 2017-06-28 21:52:08 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-28 21:55:14 rom1504 okay does anybody know how the sign text is now transmitted to the client ? 2017-06-28 21:55:29 rom1504 used to be with http://wiki.vg/Protocol#Update_Sign but it seems now it isn't 2017-06-28 21:55:32 rom1504 some metadata ? 2017-06-28 21:56:10 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Ping timeout: 260 seconds) 2017-06-28 21:56:15 rom1504 in block entities of http://wiki.vg/Protocol#Chunk_Data maybe ? 2017-06-28 22:06:17 pokechu22 Yea, it's in the block entities for the chunk, or via http://wiki.vg/Protocol#Update_Block_Entity if it's placed after the chunk's loaded (there no longer is a packet specifically dedicated to signs) 2017-06-28 22:06:27 rom1504 ok 2017-06-28 22:06:55 rom1504 there isn't ? I think update sign still exists, it is just used less 2017-06-28 22:09:13 pokechu22 There's a client to server one (which is used when the client finishes writing on a sign); there used to be a server to client one but now there isn't. (Before, there was both http://wiki.vg/index.php?title=Protocol&oldid=7817#Update_Sign_.28clientbound.29 and http://wiki.vg/index.php?title=Protocol&oldid=7817#Update_Sign_.28serverbound.29 ) 2017-06-28 22:12:15 rom1504 oh ok I understand 2017-06-28 22:38:36 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Quit: Tachyon_) 2017-06-28 23:03:23 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-06-28 23:03:24 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Client Quit) 2017-06-28 23:03:42 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-06-29 00:43:51 --> gurnux (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-06-29 00:43:51 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Disconnected by services) 2017-06-29 01:58:44 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-06-29 02:01:14 <-- gurnux (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Ping timeout: 268 seconds) 2017-06-29 02:24:08 --> oldmanmike (~oldmanmik@pool-108-36-102-227.phlapa.fios.verizon.net) a rejoint #mcdevs 2017-06-29 02:32:45 <-- oldmanmike (~oldmanmik@pool-108-36-102-227.phlapa.fios.verizon.net) a quitté (Ping timeout: 240 seconds) 2017-06-29 03:22:50 <-- UUID02 (~UUID00@BSN-182-165-79.dynamic.siol.net) a quitté (Ping timeout: 260 seconds) 2017-06-29 03:51:42 --> gurnux (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-06-29 03:51:42 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Disconnected by services) 2017-06-29 04:50:18 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-06-29 04:52:40 <-- gurnux (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Ping timeout: 268 seconds) 2017-06-29 05:51:45 --> gurnux (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-06-29 05:51:45 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Disconnected by services) 2017-06-29 06:01:55 --> oldmanmike (~oldmanmik@pool-108-36-102-227.phlapa.fios.verizon.net) a rejoint #mcdevs 2017-06-29 06:58:09 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-06-29 07:01:06 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 276 seconds) 2017-06-29 07:01:06 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2017-06-29 07:32:15 <-- oldmanmike (~oldmanmik@pool-108-36-102-227.phlapa.fios.verizon.net) a quitté (Ping timeout: 240 seconds) 2017-06-29 08:27:33 <-- bildramer (~bildramer@p200300ED83CC7F007D68F758FEA3FA2E.dip0.t-ipconnect.de) a quitté (Ping timeout: 276 seconds) 2017-06-29 08:28:17 --> bildramer (~bildramer@p2E5141D5.dip0.t-ipconnect.de) a rejoint #mcdevs 2017-06-29 08:44:30 <-- zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a quitté (Quit: Connection closed for inactivity) 2017-06-29 09:31:01 Not-75c6 [mineflayer] rom1504 pushed 2 commits to master [+0/-0/±2] https://github.com/PrismarineJS/mineflayer/compare/431d6a334cc5...2fe44d440eb0 2017-06-29 09:31:02 Not-75c6 [mineflayer] smilechaser 491548a - Fixes issue #549 2017-06-29 09:31:04 Not-75c6 [mineflayer] rom1504 2fe44d4 - Merge pull request #550 from smilechaser/issue_549 Fixes issue #549 2017-06-29 09:32:28 Not-75c6 [mineflayer] rom1504 pushed 1 commit to master [+0/-0/±1] https://github.com/PrismarineJS/mineflayer/compare/2fe44d440eb0...57abe77ae19f 2017-06-29 09:32:30 Not-75c6 [mineflayer] rom1504 57abe77 - Fix user links 2017-06-29 10:13:36 Not-75c6 [mineflayer] rom1504 pushed 1 commit to master [+0/-0/±1] https://github.com/PrismarineJS/mineflayer/compare/57abe77ae19f...09ee74f259ef 2017-06-29 10:13:37 Not-75c6 [mineflayer] rom1504 09ee74f - Increase waiting time before starting in external test 2017-06-29 11:26:52 --> UUID02 (~UUID00@BSN-182-165-79.dynamic.siol.net) a rejoint #mcdevs 2017-06-29 12:14:51 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-06-29 12:17:15 <-- gurnux (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Ping timeout: 240 seconds) 2017-06-29 13:27:03 --> oldmanmike (~oldmanmik@pool-108-36-102-227.phlapa.fios.verizon.net) a rejoint #mcdevs 2017-06-29 13:50:50 <-- oldmanmike (~oldmanmik@pool-108-36-102-227.phlapa.fios.verizon.net) a quitté (Ping timeout: 240 seconds) 2017-06-29 14:47:32 timmyRS Why is the "Combat Event" Packet so poorly documented? There is no information at all about the different events. :/ 2017-06-29 14:48:25 timmyRS is the Player ID of the player who killed the Entity with Entity ID? And what if an Entity (e.g. Creeper) killed a Player? 2017-06-29 14:52:21 --> zhuyifei1999_ (uid97661@wikimedia/zhuyifei1999) a rejoint #mcdevs 2017-06-29 14:59:48 rom1504 boot up a proxy and try it 2017-06-29 15:04:47 timmyRS I'm supposed to do the documenting? O.o 2017-06-29 15:17:18 rom1504 hmm, who do you think does it ? 2017-06-29 15:20:24 timmyRS Report Combat Events, but it turns out it was not the packet I needed after all 2017-06-29 15:52:21 <-- froglegstew (~froglegst@138.197.141.235) a quitté (Quit: ZNC 1.6.5 - http://znc.in) 2017-06-29 16:59:50 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-29 17:43:46 rom1504 what is .minecraft/resources and why does it duplicate some assets ? (that are also in assets/objects) 2017-06-29 17:54:00 timmyRS I don't have that folder. Maybe it is an artifact of a Snapshot or Mod? 2017-06-29 17:55:15 rom1504 ah yes maybe, or maybe it's some legacy thing 2017-06-29 17:56:12 Tachyon_ https://gist.github.com/xTachyon/76b0dd1646fda176d85d797523f54842 no /resources here 2017-06-29 18:00:17 rom1504 I see 2017-06-29 18:10:18 ScruffyRules Tachyon_, There is some old crap in there 2017-06-29 18:10:32 Tachyon_ ScruffyRules: huh ? 2017-06-29 18:10:41 ScruffyRules textures_0.png n stuff 2017-06-29 18:10:57 Tachyon_ who knows 2017-06-29 18:11:02 ScruffyRules no. 2017-06-29 18:11:04 pokechu22 .minecraft/resources is from the OLD launcher (before 1.5) 2017-06-29 18:11:27 timmyRS I also have textures_0 to 5.png and my PC is not very old 2017-06-29 18:11:43 timmyRS sorry, only 0 to 3. 2017-06-29 18:13:18 pokechu22 Pretty sure those are stitched textures (like debug.stitched_items.png and debug.stitched_terrain.png and stitched_items.png and stitched_terrain.png) 2017-06-29 18:13:28 pokechu22 At various levels of mipmapping 2017-06-29 18:39:43 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Ping timeout: 260 seconds) 2017-06-29 18:51:28 <-- NathanWolf (~nathan@216-235-101-HCC-80.hcc.net) a quitté (Quit: NathanWolf) 2017-06-29 18:54:20 --> NathanWolf (~nathan@216-235-101-HCC-80.hcc.net) a rejoint #mcdevs 2017-06-29 18:58:53 <-- MeltedLux (MeltedLux@help.lux.melted.me) a quitté (Ping timeout: 240 seconds) 2017-06-29 19:04:29 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-29 19:15:45 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Ping timeout: 258 seconds) 2017-06-29 19:36:58 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-29 19:57:43 --> MeltedLux (MeltedLux@help.lux.melted.me) a rejoint #mcdevs 2017-06-29 20:21:35 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Read error: Connection reset by peer) 2017-06-29 20:22:04 --> redstonehelper (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-06-29 20:42:06 --> progwml6 (~progwml6@pool-173-54-58-71.nwrknj.fios.verizon.net) a rejoint #mcdevs 2017-06-29 20:47:14 --> agenttroll (~agenttrol@2601:601:1280:16f3:f47f:a975:a2d:f9cf) a rejoint #mcdevs 2017-06-29 20:47:28 agenttroll Hello 2017-06-29 20:47:57 agenttroll I was wondering why the client sends two creative inventory action packets when you place down an item in the hotbar 2017-06-29 20:48:34 MiniDigger identical or different actions? 2017-06-29 20:48:51 agenttroll They're the same, the only difference is that the first packet has bullshit NBT dat 2017-06-29 20:48:53 agenttroll a 2017-06-29 20:49:13 agenttroll Otherwise both packets seem to be the same 2017-06-29 20:51:14 pokechu22 The creative inventory's a bit of a mess (not sure why it's sending ANY to be honest). What is the NBT data that it's sending the first time? 2017-06-29 20:51:34 timmyRS pokechu22, for the server to update the inventory? 2017-06-29 20:51:52 pokechu22 Oh, misread - I thought you meant place a block 2017-06-29 20:52:10 agenttroll Well the first packet almost always has these bytes 00, 09, 1b, 00, 27, 01, 37, 01, 00, 00, 00 2017-06-29 20:52:39 timmyRS the block placement also does not include a block, only the coordinates, it is up to the server to know the block placed or item used 2017-06-29 20:53:03 agenttroll sometimes it's a bit longer but I'm pretty sure that's just netty leaving shit behind when you don't read the full packet 2017-06-29 20:54:32 timmyRS as far as I know the client sends a packet when it picks up the item and one when it places the item 2017-06-29 20:54:49 timmyRS "places the item", as it placing it in the inventory. 2017-06-29 20:55:04 agenttroll Yeah I realize that, it is on the wiki 2017-06-29 20:55:43 agenttroll Somehow one action sends two packets for some reason, hopefully it's not just me and missing some oversight on my packet decoding or whatever 2017-06-29 20:56:15 pokechu22 OK, I'm parsing that as length 9, packet 0x1B, slot 0x27, then an item with 0x137 = 311 = minecraft:diamond_chestplate, count of 0x01, data = 0x0000 (no durability lost), and then no NBT blob (0x00 = TAG_END) 2017-06-29 20:56:19 pokechu22 That looks fine 2017-06-29 20:56:43 pokechu22 Though, I don't know what the first 00 is from... Is that the payload to a packet? It looks like a full packet itself 2017-06-29 20:57:26 agenttroll Apparently that's the NBT data 2017-06-29 20:57:32 agenttroll For the first packet 2017-06-29 20:58:05 agenttroll Give me a quick sec I'm going to look at netty's source 2017-06-29 20:58:06 pokechu22 Yea, that shouldn't be NBT data... I think you're reading too much - the first 00 is probably a TAG_END which indicates you should stop reading further NBT, and the data after that's a new packet 2017-06-29 20:58:42 agenttroll But my question is why is it sending a second packet? 2017-06-29 20:58:54 <-- progwml6 (~progwml6@pool-173-54-58-71.nwrknj.fios.verizon.net) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2017-06-29 20:59:23 --> progwml6 (~progwml6@pool-173-54-58-71.nwrknj.fios.verizon.net) a rejoint #mcdevs 2017-06-29 20:59:35 pokechu22 That, I don't know 2017-06-29 21:00:03 pokechu22 I think it might send a packet when you close the inventory or something, not 100% sure 2017-06-29 21:00:24 agenttroll Hm that's a good theory but I'm not closing the inventory at all unfortunately 2017-06-29 21:00:27 <-- progwml6 (~progwml6@pool-173-54-58-71.nwrknj.fios.verizon.net) a quitté (Client Quit) 2017-06-29 21:00:37 pokechu22 What does the first packet look like? 2017-06-29 21:00:49 agenttroll Quick sec let me dump the whole thing 2017-06-29 21:00:57 --> progwml6 (~progwml6@pool-173-54-58-71.nwrknj.fios.verizon.net) a rejoint #mcdevs 2017-06-29 21:03:21 <-- progwml6 (~progwml6@pool-173-54-58-71.nwrknj.fios.verizon.net) a quitté (Read error: Connection reset by peer) 2017-06-29 21:03:26 agenttroll This is the whole first packet: 09, 1b, 00, 24, 01, 2c, 01, 00, 00, 00, 09, 1b, 00, 24, 01, 2c, 01, 00, 00, 00 2017-06-29 21:04:54 agenttroll Am I supposed to be discarding the second portion? 2017-06-29 21:05:22 pokechu22 I don't think you need to be disgarding it, but you shouldn't be picking it up either 2017-06-29 21:05:47 pokechu22 Use the packet length, 9 bytes (including the ID but excluding the length itself) drops you right before the next packet (also length 9) 2017-06-29 21:06:12 pokechu22 Should be parsable just fine... just don't know why you're receiving two of them 2017-06-29 21:06:20 agenttroll Alright, thanks 2017-06-29 21:06:36 agenttroll Been tearing my hair out over it for hours, lol 2017-06-29 21:06:57 MiniDigger how's trident coming along? 2017-06-29 21:07:20 agenttroll Unfortunately not well, I'm basically the only one working on it for the past few months 2017-06-29 21:07:36 agenttroll I'm presuming you work on sponge yeah? 2017-06-29 21:07:44 agenttroll I recall seeing you somewhere there 2017-06-29 21:07:47 MiniDigger I don't really work on anything rn 2017-06-29 21:07:58 MiniDigger fairly active spigot forum user and contributor 2017-06-29 21:08:08 agenttroll Ah must be someone else. I don't remember much of the community these days :p 2017-06-29 21:08:12 agenttroll Thanks for asking though 2017-06-29 21:08:13 MiniDigger I wish I could spend time to work on something like that 2017-06-29 21:09:53 agenttroll If you don't burn out from working on long projects then you should probably just spend a few minutes a day just working on it 2017-06-29 21:20:35 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Quit: Tachyon_) 2017-06-29 21:37:37 <-- MeltedLux (MeltedLux@help.lux.melted.me) a quitté (Ping timeout: 246 seconds) 2017-06-29 21:53:48 <-- agenttroll (~agenttrol@2601:601:1280:16f3:f47f:a975:a2d:f9cf) a quitté (Quit: WeeChat 1.6) 2017-06-29 22:05:11 --> MeltedLux (znc@help.lux.melted.me) a rejoint #mcdevs 2017-06-29 22:46:31 <-- Byteflux (~Byteflux@minelink.net) a quitté (Ping timeout: 240 seconds) 2017-06-29 22:50:04 --> Byteflux (~Byteflux@minelink.net) a rejoint #mcdevs 2017-06-30 00:36:03 <-- MeltedLux (znc@help.lux.melted.me) a quitté (Ping timeout: 276 seconds) 2017-06-30 03:03:10 <-- Thinkofname (~Think@li187-33.members.linode.com) a quitté (Read error: Connection reset by peer) 2017-06-30 03:03:20 --> Thinkofname (Think@2a01:7e00::f03c:91ff:febc:61ac) a rejoint #mcdevs 2017-06-30 03:03:20 -- Mode #mcdevs [+v Thinkofname] par ChanServ 2017-06-30 03:59:28 <-- UUID02 (~UUID00@BSN-182-165-79.dynamic.siol.net) a quitté (Ping timeout: 240 seconds) 2017-06-30 04:26:40 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Read error: Connection reset by peer) 2017-06-30 04:27:13 --> redstonehelper (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-06-30 04:35:25 <-- I9hdkill_ (~quassel@2a01:4f8:171:1ae5::2) a quitté (Remote host closed the connection) 2017-06-30 04:36:30 --> I9hdkill (~quassel@2a01:4f8:171:1ae5::2) a rejoint #mcdevs 2017-06-30 04:40:50 <-- I9hdkill (~quassel@2a01:4f8:171:1ae5::2) a quitté (Ping timeout: 255 seconds) 2017-06-30 04:43:11 --> I9hdkill (~quassel@2a01:4f8:171:1ae5::2) a rejoint #mcdevs 2017-06-30 04:47:35 <-- I9hdkill (~quassel@2a01:4f8:171:1ae5::2) a quitté (Ping timeout: 255 seconds) 2017-06-30 04:54:33 --> I9hdkill (~quassel@2a01:4f8:171:1ae5::2) a rejoint #mcdevs 2017-06-30 04:54:38 --> ghac (~ghac@2a01:4f8:171:1ae5::2) a rejoint #mcdevs 2017-06-30 05:42:21 --> oldmanmike (~oldmanmik@pool-108-36-102-227.phlapa.fios.verizon.net) a rejoint #mcdevs 2017-06-30 05:46:44 <-- oldmanmike (~oldmanmik@pool-108-36-102-227.phlapa.fios.verizon.net) a quitté (Ping timeout: 240 seconds) 2017-06-30 05:47:45 --> MeltedLux (MeltedLux@help.lux.melted.me) a rejoint #mcdevs 2017-06-30 06:14:58 --> Deamon (~Deamon@irc.thevoxelbox.com) a rejoint #mcdevs 2017-06-30 06:23:35 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-06-30 06:26:20 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 240 seconds) 2017-06-30 06:26:20 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2017-06-30 07:12:34 <-- gentauro (~gentauro@xd520f27a.cust.hiper.dk) a quitté (Ping timeout: 268 seconds) 2017-06-30 07:13:50 --> gentauro (~gentauro@xd520f27a.cust.hiper.dk) a rejoint #mcdevs 2017-06-30 10:35:27 --> UUID02 (~UUID00@BSN-182-165-79.dynamic.siol.net) a rejoint #mcdevs 2017-06-30 11:42:57 <-- MeltedLux (MeltedLux@help.lux.melted.me) a quitté (Ping timeout: 255 seconds) 2017-06-30 12:09:45 --> MeltedLux (MeltedLux@help.lux.melted.me) a rejoint #mcdevs 2017-06-30 12:18:06 <-- MeltedLux (MeltedLux@help.lux.melted.me) a quitté (Ping timeout: 258 seconds) 2017-06-30 12:33:45 --> MeltedLux (MeltedLux@help.lux.melted.me) a rejoint #mcdevs 2017-06-30 13:19:16 <-- gentauro (~gentauro@xd520f27a.cust.hiper.dk) a quitté (Ping timeout: 260 seconds) 2017-06-30 13:21:02 --> gentauro (~gentauro@xd520f27a.cust.hiper.dk) a rejoint #mcdevs 2017-06-30 13:40:58 --> rtjure (~rtjure@84.40.71.42) a rejoint #mcdevs 2017-06-30 14:45:36 <-- SpaceManiac (~SpaceMani@c-73-235-50-40.hsd1.ca.comcast.net) a quitté (Ping timeout: 276 seconds) 2017-06-30 14:46:31 --> SpaceManiac (~SpaceMani@c-73-235-50-40.hsd1.ca.comcast.net) a rejoint #mcdevs 2017-06-30 14:46:31 -- Mode #mcdevs [+v SpaceManiac] par ChanServ 2017-06-30 15:24:28 <-- Deamon (~Deamon@irc.thevoxelbox.com) a quitté (Ping timeout: 240 seconds) 2017-06-30 16:17:19 <-- ferrybig (~ferrybig@2a03:b0c0:0:1010::20:c001) a quitté (Ping timeout: 255 seconds) 2017-06-30 16:17:26 --> ferrybig (~ferrybig@2a03:b0c0:0:1010::20:c006) a rejoint #mcdevs 2017-06-30 16:53:58 <-- mundus2018 (~mundus201@unaffiliated/mundus2018) a quitté (Ping timeout: 240 seconds) 2017-06-30 17:31:15 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-30 18:13:21 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Remote host closed the connection) 2017-06-30 18:55:42 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-30 19:05:54 --> Flemmard (bla@unaffiliated/flemmard) a rejoint #mcdevs 2017-06-30 19:08:48 <-- Flemmard (bla@unaffiliated/flemmard) a quitté (Client Quit) 2017-06-30 19:32:13 --> Deamon (~Deamon@158.69.211.21) a rejoint #mcdevs 2017-06-30 20:42:52 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Ping timeout: 268 seconds) 2017-06-30 21:19:20 --> NickG365_ (~NickG365@cortex.starlabs.theflash.rocks) a rejoint #mcdevs 2017-06-30 21:21:07 --> Pyker_ (pyker@pyker.net) a rejoint #mcdevs 2017-06-30 21:22:41 <-- Pyker (pyker@pyker.net) a quitté (Quit: Quit) 2017-06-30 21:22:42 <-- NickG365 (~NickG365@cortex.starlabs.theflash.rocks) a quitté (Ping timeout: 255 seconds) 2017-06-30 21:22:42 -- Pyker_ est maintenant connu sous le nom Pyker 2017-06-30 21:22:42 -- NickG365_ est maintenant connu sous le nom NickG365 2017-06-30 21:24:44 <-- lukegb (~lukegb@210.58.154.104.bc.googleusercontent.com) a quitté (Ping timeout: 240 seconds) 2017-06-30 21:24:44 <-- 7JTAAZHO3 (~vemacs@192.3.17.176) a quitté (Ping timeout: 240 seconds) 2017-06-30 21:25:11 <-- EW8GU (admin@ho.by) a quitté (Ping timeout: 260 seconds) 2017-06-30 21:25:11 <-- ecx86 (~ecx86@unaffiliated/ecx86) a quitté (Ping timeout: 260 seconds) 2017-06-30 21:26:21 <-- samschaap (~samschaap@5469BF1F.cm-12-2c.dynamic.ziggo.nl) a quitté (Ping timeout: 260 seconds) 2017-06-30 21:27:35 --> ecx86 (~ecx86@unaffiliated/ecx86) a rejoint #mcdevs 2017-06-30 21:27:45 --> lukegb (~lukegb@210.58.154.104.bc.googleusercontent.com) a rejoint #mcdevs 2017-06-30 21:28:03 --> vemacs|ded (~vemacs@192.3.17.176) a rejoint #mcdevs 2017-06-30 21:28:08 --> samschaap (~samschaap@5469BF1F.cm-12-2c.dynamic.ziggo.nl) a rejoint #mcdevs 2017-06-30 21:32:21 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-06-30 21:35:03 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Remote host closed the connection) 2017-06-30 21:56:48 <-- ferrybig (~ferrybig@2a03:b0c0:0:1010::20:c006) a quitté (Quit: Goodbye) 2017-06-30 22:06:05 --> ferrybig (~ferrybig@2a03:b0c0:0:1010::20:c001) a rejoint #mcdevs 2017-06-30 22:35:30 <-- electroniccat (~electroni@192.99.249.58) a quitté (Remote host closed the connection) 2017-06-30 22:35:49 --> electronicboy (~electroni@atlas.valaria.pw) a rejoint #mcdevs 2017-06-30 22:58:47 -- ajvpot est maintenant connu sous le nom zjvpot 2017-06-30 23:28:49 --> EW8GU (admin@ho.by) a rejoint #mcdevs 2017-07-01 00:26:18 <-- EW8GU (admin@ho.by) a quitté (Read error: Connection reset by peer) 2017-07-01 00:27:22 <-- gentauro (~gentauro@xd520f27a.cust.hiper.dk) a quitté (Ping timeout: 255 seconds) 2017-07-01 00:29:14 --> gentauro (~gentauro@xd520f27a.cust.hiper.dk) a rejoint #mcdevs 2017-07-01 00:30:24 --> EW8GU (admin@ho.by) a rejoint #mcdevs 2017-07-01 00:43:06 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-07-01 00:45:33 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 276 seconds) 2017-07-01 00:45:34 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2017-07-01 03:02:20 --> Thinkofdname_ (~Think@li187-33.members.linode.com) a rejoint #mcdevs 2017-07-01 03:02:57 <-- Thinkofname (Think@2a01:7e00::f03c:91ff:febc:61ac) a quitté (Read error: Connection reset by peer) 2017-07-01 03:02:58 -- Thinkofdname_ est maintenant connu sous le nom Thinkofname 2017-07-01 03:02:58 -- Mode #mcdevs [+v Thinkofname] par ChanServ 2017-07-01 04:34:13 <-- OkAlt (~OkAlt@S0106bcd16566972b.lb.shawcable.net) a quitté (Quit: My MacBook has gone to sleep. ZZZzzz…) 2017-07-01 04:34:33 <-- gentauro (~gentauro@xd520f27a.cust.hiper.dk) a quitté (Ping timeout: 255 seconds) 2017-07-01 04:36:27 --> gentauro (~gentauro@xd520f27a.cust.hiper.dk) a rejoint #mcdevs 2017-07-01 04:47:32 --> OkAlt (~OkAlt@S0106bcd16566972b.lb.shawcable.net) a rejoint #mcdevs 2017-07-01 06:08:53 --> Jailout2000 (~Jailout20@unaffiliated/jailout2000) a rejoint #mcdevs 2017-07-01 06:08:55 <-- Jailout2000 (~Jailout20@unaffiliated/jailout2000) a quitté (Client Quit) 2017-07-01 06:14:39 --> Jailout2000 (~Jailout20@unaffiliated/jailout2000) a rejoint #mcdevs 2017-07-01 06:14:40 <-- Jailout2000 (~Jailout20@unaffiliated/jailout2000) a quitté (Read error: Connection reset by peer) 2017-07-01 06:30:51 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-07-01 06:33:01 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 268 seconds) 2017-07-01 06:33:02 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2017-07-01 07:23:21 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Ping timeout: 276 seconds) 2017-07-01 07:24:10 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-07-01 07:33:39 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Disconnected by services) 2017-07-01 07:33:39 --> gurnux (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-07-01 07:40:50 <-- gurnux (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Ping timeout: 240 seconds) 2017-07-01 07:44:33 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-07-01 07:48:21 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Disconnected by services) 2017-07-01 07:48:26 --> gurnux (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2017-07-01 08:22:38 --> protryon (~protryon@c-67-180-93-98.hsd1.ca.comcast.net) a rejoint #mcdevs 2017-07-01 08:35:52 --> ryan_the_leach (~Ryan@101.166.168.156) a rejoint #mcdevs 2017-07-01 09:06:00 <-- pokechu22 (~pokechu22@50.35.67.138) a quitté (Quit: Shutting down pi for the moment) 2017-07-01 09:18:59 <-- NathanWolf (~nathan@216-235-101-HCC-80.hcc.net) a quitté (Quit: NathanWolf) 2017-07-01 09:29:37 <-- ryan_the_leach (~Ryan@101.166.168.156) a quitté (Quit: Leaving) 2017-07-01 09:38:25 --> pokechu22 (~pokechu22@50.35.67.138) a rejoint #mcdevs 2017-07-01 09:53:59 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-07-01 11:46:31 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Ping timeout: 260 seconds) 2017-07-01 13:07:45 --> Janmm14 (2e536f08@gateway/web/freenode/ip.46.83.111.8) a rejoint #mcdevs 2017-07-01 13:28:37 --> Janmm14_ (2e536f08@gateway/web/freenode/ip.46.83.111.8) a rejoint #mcdevs 2017-07-01 13:30:58 <-- Janmm14 (2e536f08@gateway/web/freenode/ip.46.83.111.8) a quitté (Ping timeout: 260 seconds) 2017-07-01 13:31:45 Janmm14_ hi! i think the protocol documentation contains a mistake with the serverbound packet "Player" (0x0D, only onground being sent), I can't see that packet being sent by the client with protocollib, i tested it with 2017-07-01 13:31:52 Janmm14_ packet add play client 13 true 2017-07-01 13:32:18 Janmm14_ (1.11.2, ProtocolLib 4.3.0) 2017-07-01 13:37:05 timmyRS Interesting, my 1.12 client also seems to be sending 0x0E (Player Position) despite not having moved. 2017-07-01 13:39:49 Janmm14_ yeah that's a different thing, its still sending its position once per second, but in 1.8.x the client sent 1 packet per tick with its onground state while not moving and each 20th tick it would send a player position instead 2017-07-01 13:41:22 timmyRS As I just destroyed the block I'm standing on the client seemed to have sent a 0x0D Player Packet right after the Teleport Confirm, however, I am not using Spigot. 2017-07-01 13:46:41 Janmm14_ in 1.11.2 there seems to be no 0x0d being sent when digging the block one is standing on 2017-07-01 13:51:32 timmyRS It looks as tho the 1.11.2 and 1.12 send Player right after they send Teleport Confirm. 2017-07-01 13:57:46 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-07-01 14:55:37 Janmm14_ As nobody else is here, I just edited the wiki: http://wiki.vg/index.php?title=Protocol&type=revision&diff=13153&oldid=13002 2017-07-01 14:57:58 timmyRS You removed a bit too much, since the client does send a position update every 20 ticks, just not a player packet. 2017-07-01 14:58:18 timmyRS I undid your revision and removed the actual wrong part: http://wiki.vg/index.php?title=Protocol&diff=13154&oldid=13153 2017-07-01 15:01:05 --> NathanWolf (~nathan@216-235-101-HCC-80.hcc.net) a rejoint #mcdevs 2017-07-01 15:02:54 <-- rtjure (~rtjure@84.40.71.42) a quitté (Ping timeout: 276 seconds) 2017-07-01 15:05:42 Janmm14_ Timmy 2017-07-01 15:05:47 Janmm14_ my edit was correct 2017-07-01 15:05:59 Janmm14_ you did not noticed what i added at the playerpositon packet 2017-07-01 15:06:26 timmyRS Even that is not fully correct 2017-07-01 15:06:58 Janmm14_ And the part "at least one of them must be sent each tick to ensure that..." is wrong 2017-07-01 15:07:18 Janmm14_ since the client is not dong that anymore 2017-07-01 15:07:49 Janmm14_ if idle 2017-07-01 15:08:21 timmyRS Did not notice, that is in fact wrong, but please add your "Vanilla clients will send one such packet every 20 ticks" after the term "serverbound movement packets" has been established and not lines later. 2017-07-01 15:13:03 --> rtjure (~rtjure@84.40.71.42) a rejoint #mcdevs 2017-07-01 15:43:43 <-- gentauro (~gentauro@xd520f27a.cust.hiper.dk) a quitté (Ping timeout: 240 seconds) 2017-07-01 15:45:34 --> gentauro (~gentauro@xd520f27a.cust.hiper.dk) a rejoint #mcdevs 2017-07-01 16:02:00 <-- rtjure (~rtjure@84.40.71.42) a quitté (Ping timeout: 248 seconds) 2017-07-01 16:51:39 <-- ghac (~ghac@2a01:4f8:171:1ae5::2) a quitté (Ping timeout: 255 seconds) 2017-07-01 16:51:39 <-- I9hdkill (~quassel@2a01:4f8:171:1ae5::2) a quitté (Ping timeout: 255 seconds) 2017-07-01 16:51:45 <-- Janmm14_ (2e536f08@gateway/web/freenode/ip.46.83.111.8) a quitté #mcdevs 2017-07-01 16:57:14 --> I9hdkill (~quassel@2a01:4f8:171:1ae5::2) a rejoint #mcdevs 2017-07-01 16:57:15 --> ghac (~ghac@2a01:4f8:171:1ae5::2) a rejoint #mcdevs 2017-07-01 17:01:34 <-- ghac (~ghac@2a01:4f8:171:1ae5::2) a quitté (Ping timeout: 258 seconds) 2017-07-01 17:01:51 <-- I9hdkill (~quassel@2a01:4f8:171:1ae5::2) a quitté (Ping timeout: 276 seconds) 2017-07-01 17:07:56 --> rtjure (~rtjure@84.40.71.42) a rejoint #mcdevs 2017-07-01 17:22:38 --> ghac (~ghac@2a01:4f8:171:1ae5::2) a rejoint #mcdevs 2017-07-01 17:27:12 <-- ghac (~ghac@2a01:4f8:171:1ae5::2) a quitté (Ping timeout: 255 seconds) 2017-07-01 17:44:55 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Ping timeout: 260 seconds) 2017-07-01 18:26:50 --> I9hdkill (~quassel@2a01:4f8:171:1ae5::2) a rejoint #mcdevs 2017-07-01 18:26:50 --> ghac (~ghac@2a01:4f8:171:1ae5::2) a rejoint #mcdevs 2017-07-01 18:31:06 <-- I9hdkill (~quassel@2a01:4f8:171:1ae5::2) a quitté (Ping timeout: 255 seconds) 2017-07-01 18:31:06 <-- ghac (~ghac@2a01:4f8:171:1ae5::2) a quitté (Ping timeout: 255 seconds) 2017-07-01 18:38:38 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2017-07-01 19:11:51 <-- DemonWav_ (~DemonWav@unaffiliated/demonwav) a quitté (Ping timeout: 260 seconds) 2017-07-01 19:13:32 --> DemonWav (~DemonWav@unaffiliated/demonwav) a rejoint #mcdevs 2017-07-01 19:29:02 --> ghac (~ghac@2a01:4f8:171:1ae5::2) a rejoint #mcdevs 2017-07-01 19:29:02 --> I9hdkill (~quassel@2a01:4f8:171:1ae5::2) a rejoint #mcdevs 2017-07-01 19:31:29 <-- I9hdkill (~quassel@2a01:4f8:171:1ae5::2) a quitté (Read error: Connection reset by peer) 2017-07-01 19:31:29 <-- ghac (~ghac@2a01:4f8:171:1ae5::2) a quitté (Read error: Connection reset by peer) 2017-07-01 19:39:25 --> ghac (~ghac@2a01:4f8:171:1ae5::2) a rejoint #mcdevs 2017-07-01 19:39:25 --> I9hdkill (~quassel@2a01:4f8:171:1ae5::2) a rejoint #mcdevs 2017-07-01 19:58:24 <-- samschaap (~samschaap@5469BF1F.cm-12-2c.dynamic.ziggo.nl) a quitté (Ping timeout: 255 seconds) 2017-07-01 20:04:25 --> samschaap (~samschaap@5469BF1F.cm-12-2c.dynamic.ziggo.nl) a rejoint #mcdevs 2017-07-01 20:39:11 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Quit: Tachyon_) 2017-07-01 21:00:22 <-- McLive (~McLive@freecraft.eu) a quitté (Ping timeout: 255 seconds) 2017-07-01 21:13:13 --> McLive (~McLive@freecraft.eu) a rejoint #mcdevs 2017-07-01 21:42:35 --> madgoat (~GK.1WM.SU@192.240.212.2) a rejoint #mcdevs 2017-07-01 21:44:07 <-- madgoat (~GK.1WM.SU@192.240.212.2) a quitté #mcdevs 2017-07-01 21:51:06 <-- gentauro (~gentauro@xd520f27a.cust.hiper.dk) a quitté (Ping timeout: 260 seconds) 2017-07-01 21:52:43 --> gentauro (~gentauro@xd520f27a.cust.hiper.dk) a rejoint #mcdevs 2017-07-01 21:59:33 <-- MeltedLux (MeltedLux@help.lux.melted.me) a quitté (Ping timeout: 276 seconds) 2017-07-01 22:01:50 --> MeltedLux (MeltedLux@help.lux.melted.me) a rejoint #mcdevs 2017-07-01 22:11:09 <-- MeltedLux (MeltedLux@help.lux.melted.me) a quitté (Ping timeout: 255 seconds) 2017-07-01 22:13:31 timmyRS Does anyone know why the client won't color in messages sent as Game Info (to be shown above hotbar)? I am sending the same JSON I'm sending for normal chat, where the client shows the color(s) correctly. 2017-07-01 22:16:45 --> MeltedLux (MeltedLux@help.lux.melted.me) a rejoint #mcdevs 2017-07-01 22:22:20 pokechu22 I don't know _why_ it doesn't work, but it is a known behavior (and § can be used there, though normally it's deprecated). See http://wiki.vg/Protocol#Chat_Message_.28clientbound.29 2017-07-01 22:22:56 pokechu22 I'm going to check if there's a bug report for that, actually... 2017-07-01 22:24:24 timmyRS When I send a § sign (encoded by GSON), the client disconnects 2017-07-01 22:25:12 pokechu22 Are you sending a correct message, eg something like "Score: §e0"? 2017-07-01 22:25:17 pokechu22 Or just an §? 2017-07-01 22:25:50 timmyRS I'm sending something along the lines of "§aHello, world!" 2017-07-01 22:25:59 pokechu22 Hm... and what does it disconnect with? 2017-07-01 22:26:17 timmyRS https://i.imgur.com/rfHI7ad.png 2017-07-01 22:27:54 timmyRS When I send {"text":"§aHello, world!","color":"green"} the error's column changes to 42, but still the same error. 2017-07-01 22:28:37 pokechu22 Does "\u00a7" work? (I'd think GSON would automatically handle that, but it might not) 2017-07-01 22:29:02 pokechu22 Oh, and which packet are you using - title, or chat? 2017-07-01 22:29:25 timmyRS Chat. I don't think title can show a message above hotbar. 2017-07-01 22:30:48 pokechu22 It actually can now; there's two ways to do it. (http://wiki.vg/Protocol#Title, action #2) 2017-07-01 22:31:22 timmyRS Interesting, thanks for the info. :) 2017-07-01 22:32:25 timmyRS Well, when I type \u00a7 it automatically gets parsed to § and when I type \\u00a7 that will literally be rendered by the client 2017-07-01 22:34:01 timmyRS I should clarify: It gets rendered by the client, but with only one \. 2017-07-01 22:34:37 pokechu22 Hm. Running `/title pokechu22 actionbar {"color":"red","text":"bla"}` ingame works, and I'm pretty sure that uses the title packet... so try passing the first JSON (without any §) using that 2017-07-01 22:36:01 timmyRS When I send {"text":"Hello, world!","color":"green"} it gets rendered as white text: https://i.imgur.com/o1G4Bm2.png 2017-07-01 22:38:17 timmyRS Interestingly, the Title Packet actually works... 2017-07-01 22:40:09 timmyRS So "Behaves the same as with position 2 in Chat Message (clientbound)" does not apply for some reason 2017-07-01 22:41:49 pokechu22 Ah, yea, the code's definitely different - it uses the unformatted component for some reason... 2017-07-01 22:47:45 timmyRS I have a kind of related problem with $.with when sending a special char in a message like this: {"translate":"chat.type.text","with":[{"text":"timmyRS"},{"text":"ä"}]} 2017-07-01 22:50:45 pokechu22 Hm... first, make sure you're encoding in UTF-8 (or, use \u00EA to escape it) 2017-07-01 22:55:58 timmyRS Do you know a Java function which turns ä into the correlating \uXXXX code? new String(Charset.forName("UTF-8").encode(text).array()) seem to turn ä into ä\u0000 2017-07-01 23:02:41 timmyRS Nevermind, I have that, now I'm back to the problem that it literally shows the _encoded_ char 2017-07-01 23:03:14 timmyRS äöü will just display as this: https://i.imgur.com/kEqxzaY.png 2017-07-01 23:04:33 <-- MeltedLux (MeltedLux@help.lux.melted.me) a quitté (Ping timeout: 276 seconds) 2017-07-01 23:06:17 pokechu22 timmyRS: Hm... how are you sending the string to the client? You said you're using GSON, but how are you actually writing the string GSON produces? 2017-07-01 23:06:55 timmyRS I just send the string json produces as a varint-prefixed string 2017-07-01 23:07:05 timmyRS gson* 2017-07-01 23:07:06 pokechu22 Right, how are you encoding that String though? 2017-07-01 23:07:36 timmyRS This is the constructor for my ChatComponent: https://i.imgur.com/OpGE7qp.png 2017-07-01 23:07:52 pokechu22 I'm pretty sure that GSON is supposed to automatically escape it, and if we escape it as well, then it's doubly escaped and the client gets the singly-escaped version 2017-07-01 23:07:58 --> MeltedLux (MeltedLux@help.lux.melted.me) a rejoint #mcdevs 2017-07-01 23:09:02 timmyRS in fact, it encoded the \ to \\, but for some reason it did not encode the ä to \u00E4 2017-07-01 23:15:36 <-- MeltedLux (MeltedLux@help.lux.melted.me) a quitté (Ping timeout: 276 seconds) 2017-07-01 23:16:52 timmyRS Well, my very cheap solution of Main.gson.toJson(this).replaceAll("\\\\\\\\", "\\\\"); works. 2017-07-01 23:23:07 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Remote host closed the connection) 2017-07-01 23:32:57 --> MeltedLux (MeltedLux@help.lux.melted.me) a rejoint #mcdevs 2017-07-01 23:35:12 --> redstonehelper (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-07-02 00:09:11 <-- MeltedLux (MeltedLux@help.lux.melted.me) a quitté (Ping timeout: 240 seconds) 2017-07-02 00:10:59 --> MeltedLux (MeltedLux@help.lux.melted.me) a rejoint #mcdevs 2017-07-02 00:41:16 --> mundus2018 (~mundus201@unaffiliated/mundus2018) a rejoint #mcdevs 2017-07-02 00:42:44 <-- OkAlt (~OkAlt@S0106bcd16566972b.lb.shawcable.net) a quitté (Quit: OkAlt) 2017-07-02 00:44:58 --> OkAlt (~OkAlt@S0106bcd16566972b.lb.shawcable.net) a rejoint #mcdevs 2017-07-02 00:56:13 <-- MeltedLux (MeltedLux@help.lux.melted.me) a quitté (Ping timeout: 240 seconds) 2017-07-02 00:56:37 --> MeltedLux (MeltedLux@help.lux.melted.me) a rejoint #mcdevs 2017-07-02 01:08:09 pokechu22 timmyRS: I've created https://bugs.mojang.com/browse/MC-119145 for the fact that formatting doesn't work via the chat message packet 2017-07-02 02:04:21 <-- zjvpot (~ajvpot@the.motherfuckin.ddosshield.net) a quitté (Max SendQ exceeded) 2017-07-02 02:06:06 --> ajvpot (~ajvpot@the.motherfuckin.ddosshield.net) a rejoint #mcdevs 2017-07-02 03:37:03 <-- NathanWolf (~nathan@216-235-101-HCC-80.hcc.net) a quitté (Quit: NathanWolf) 2017-07-02 03:39:32 --> NathanWolf (~nathan@216-235-101-HCC-80.hcc.net) a rejoint #mcdevs 2017-07-02 04:11:43 <-- NathanWolf (~nathan@216-235-101-HCC-80.hcc.net) a quitté (Quit: NathanWolf) 2017-07-02 04:23:58 --> NathanWolf (~nathan@216-235-101-HCC-80.hcc.net) a rejoint #mcdevs 2017-07-02 04:24:10 <-- NathanWolf (~nathan@216-235-101-HCC-80.hcc.net) a quitté (Client Quit) 2017-07-02 04:24:47 --> Akaibu (uid118096@gateway/web/irccloud.com/x-scwkkwclapcgxrim) a rejoint #mcdevs 2017-07-02 05:38:27 <-- UUID02 (~UUID00@BSN-182-165-79.dynamic.siol.net) a quitté (Ping timeout: 276 seconds) 2017-07-02 07:04:33 <-- MeltedLux (MeltedLux@help.lux.melted.me) a quitté (Ping timeout: 240 seconds) 2017-07-02 07:08:08 --> MeltedLux (MeltedLux@help.lux.melted.me) a rejoint #mcdevs 2017-07-02 07:08:26 <-- Akaibu (uid118096@gateway/web/irccloud.com/x-scwkkwclapcgxrim) a quitté (Quit: Connection closed for inactivity) 2017-07-02 07:31:17 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Read error: No route to host) 2017-07-02 07:31:41 --> redstonehelper (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-07-02 08:08:42 <-- AlphaBlend (AlphaBlend@cpe-66-74-178-84.socal.res.rr.com) a quitté (Ping timeout: 240 seconds) 2017-07-02 08:08:54 --> AlphaBlend (AlphaBlend@cpe-66-74-178-84.socal.res.rr.com) a rejoint #mcdevs 2017-07-02 08:21:21 --> tor (cbdc3452@gateway/web/freenode/ip.203.220.52.82) a rejoint #mcdevs 2017-07-02 08:21:43 -- tor est maintenant connu sous le nom Guest83123 2017-07-02 08:21:54 <-- Guest83123 (cbdc3452@gateway/web/freenode/ip.203.220.52.82) a quitté #mcdevs 2017-07-02 08:42:55 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Read error: Connection reset by peer) 2017-07-02 08:44:38 --> redstonehelper (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-07-02 11:04:19 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Read error: Connection reset by peer) 2017-07-02 11:05:18 --> redstonehelper (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2017-07-02 11:53:11 <-- protryon (~protryon@c-67-180-93-98.hsd1.ca.comcast.net) a quitté (Quit: WeeChat 1.7-rc2) 2017-07-02 12:12:10 <-- ferrybig (~ferrybig@2a03:b0c0:0:1010::20:c001) a quitté (Quit: Goodbye) 2017-07-02 12:19:16 --> UUID02 (~UUID00@BSN-182-165-79.dynamic.siol.net) a rejoint #mcdevs 2017-07-02 15:28:37 <-- ajvpot (~ajvpot@the.motherfuckin.ddosshield.net) a quitté (Max SendQ exceeded) 2017-07-02 15:32:39 --> ajvpot (~ajvpot@the.motherfuckin.ddosshield.net) a rejoint #mcdevs 2017-07-02 15:33:12 <-- MeltedLux (MeltedLux@help.lux.melted.me) a quitté (Ping timeout: 276 seconds) 2017-07-02 15:39:41 --> MeltedLux (MeltedLux@help.lux.melted.me) a rejoint #mcdevs 2017-07-02 15:48:08 <-- ajvpot (~ajvpot@the.motherfuckin.ddosshield.net) a quitté (Ping timeout: 248 seconds) 2017-07-02 15:49:46 --> ajvpot (~ajvpot@the.motherfuckin.ddosshield.net) a rejoint #mcdevs 2017-07-02 15:56:58 <-- MeltedLux (MeltedLux@help.lux.melted.me) a quitté (Ping timeout: 258 seconds) 2017-07-02 16:04:47 --> MeltedLux (MeltedLux@help.lux.melted.me) a rejoint #mcdevs 2017-07-02 16:14:36 <-- MeltedLux (MeltedLux@help.lux.melted.me) a quitté (Ping timeout: 258 seconds) 2017-07-02 16:19:45 --> MeltedLux (MeltedLux@help.lux.melted.me) a rejoint #mcdevs 2017-07-02 16:26:07 <-- SinZ (SinZ@steamdb/source2-guru/sinz) a quitté (Quit: $this->will->crash("maybe");) 2017-07-02 16:29:08 --> SinZ (SinZ@prime.361zn.is) a rejoint #mcdevs 2017-07-02 16:29:08 <-- SinZ (SinZ@prime.361zn.is) a quitté (Changing host) 2017-07-02 16:29:08 --> SinZ (SinZ@steamdb/source2-guru/sinz) a rejoint #mcdevs 2017-07-02 16:29:08 -- Mode #mcdevs [+v SinZ] par ChanServ 2017-07-02 17:15:54 <-- dexter0 (~dexter0@2601:647:4502:8c00:dd54:e5f9:1c32:d299) a quitté (Ping timeout: 276 seconds)