2016-11-14 11:18:41 MindFlyer okay 2016-11-14 11:18:42 <-- JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a quitté (Ping timeout: 256 seconds) 2016-11-14 11:18:51 MiniDigger movement can be the same. 2016-11-14 11:19:17 MindFlyer that goes without saying 2016-11-14 11:19:36 MindFlyer but i'm really concerned about the huge amount of data that needs to be sent to keep the players aware of the map 2016-11-14 11:20:11 MindFlyer there are probably techniques to do it fast 2016-11-14 11:20:25 MindFlyer such as, don't load the same chunk twice if it hasn't changed 2016-11-14 11:20:37 MindFlyer and probably much more complicated ones 2016-11-14 11:20:56 MiniDigger minecraft compresses the packets and doesnt send full chunks if only a few blocks are changed 2016-11-14 11:21:04 MindFlyer ooh 2016-11-14 11:21:52 MiniDigger there is a block change and a multi block change packet 2016-11-14 11:22:01 MindFlyer so i guess it sends a full chunk only when the players "discovers" a new one 2016-11-14 11:22:55 MindFlyer and clients are supposed to "remember" every chunk they received even if it's far away, i guess? 2016-11-14 11:23:07 MindFlyer or do clients specifically ask for chunks as needed? 2016-11-14 11:23:24 MindFlyer maybe players have different "visibility" settings... 2016-11-14 11:24:31 MiniDigger there is a view distance. the client can set that. most servers reduce that tho to improve performance 2016-11-14 11:24:38 +SpaceManiac server uses max(client view distance, server view distance) 2016-11-14 11:24:44 +SpaceManiac er... min 2016-11-14 11:26:12 MindFlyer SpaceManiac, what is the server view distance? some distance that the server establishes if it's overloaded? 2016-11-14 11:26:32 +SpaceManiac nothing to do with being overloaded, at least not dynamically... just a config setting 2016-11-14 11:26:39 MindFlyer i see 2016-11-14 11:26:47 MindFlyer so it's basically a cap on the client distance 2016-11-14 11:26:53 MindFlyer set by the server 2016-11-14 11:27:22 MindFlyer this is all very interesting information 2016-11-14 11:28:48 MindFlyer and back to my question: does the client ask for new chunks, or does the server give clients chunks because it already knows they are going to ask them? 2016-11-14 11:29:00 MindFlyer who controls the data flow? 2016-11-14 11:31:24 +SpaceManiac the server is responsible for sending chunks to the client 2016-11-14 11:31:29 MindFlyer good 2016-11-14 11:31:56 MindFlyer so the server basically keeps track of what chunks each client already has 2016-11-14 11:32:24 MindFlyer and i guess the client is forced to keep them all, even if they'll never be used again 2016-11-14 11:33:07 +SpaceManiac not really 2016-11-14 11:33:14 MindFlyer no? 2016-11-14 11:33:21 +SpaceManiac the server also tells clients to unload chunks, in which case they'll get resent later 2016-11-14 11:33:26 MindFlyer ooohhh 2016-11-14 11:33:49 MindFlyer how does the server decide which chunks have to be unloaded? 2016-11-14 11:33:58 MindFlyer can't client and server implicitly agree on that? 2016-11-14 11:34:14 MindFlyer maybe a chunk that's too far away from the player is automatically unloaded...? 2016-11-14 11:34:23 +SpaceManiac well, the client can do whatever it wants graphically 2016-11-14 11:34:44 +SpaceManiac the server is in control of how far away is far enough away to unload 2016-11-14 11:34:47 MindFlyer yes, but it'd better do something that makes sense 2016-11-14 11:34:57 MindFlyer okay 2016-11-14 11:35:47 MindFlyer what if there are thinks like teleporters? if the player reaches a completely new location, it has to be updated with lots of new chunks at once 2016-11-14 11:35:54 +SpaceManiac mmhm 2016-11-14 11:36:25 MindFlyer what if it's teleported back and forth between two distant locations? the server is not supposed to make the client unload the chunks every time 2016-11-14 11:36:30 MindFlyer just to resend them a moment later 2016-11-14 11:36:59 MindFlyer is this problem addressed in MC? 2016-11-14 11:37:25 +SpaceManiac no, the expectation is that the server will not be in a situation where it needs to do that 2016-11-14 11:37:47 MindFlyer are there teleporting devices in MC at all? 2016-11-14 11:38:36 MindFlyer maybe not a good idea to introduce them in a game like this 2016-11-14 11:38:47 MindFlyer unless the teleportation distance is kept to a minimum 2016-11-14 11:39:05 MindFlyer so you don't completely change your surrounding chunks 2016-11-14 11:39:21 <-- C4K3 (~C4K3@0127801301.0.fullrate.ninja) a quitté (Ping timeout: 250 seconds) 2016-11-14 11:39:58 +SpaceManiac there is a short-range teleportation option (throwing distance) and some alternate-world-teleportation options which are on cooldowns 2016-11-14 11:40:39 MindFlyer oooh, cooldowns 2016-11-14 11:40:44 MindFlyer that's genius 2016-11-14 11:40:50 MindFlyer lol 2016-11-14 11:41:13 MindFlyer so you let the server take breath 2016-11-14 11:42:36 +SpaceManiac one portal is on a timer (like 5 seconds or something) and another is effectively on a timer because it teleports you some walking distance from the portal back 2016-11-14 11:43:52 MindFlyer thank you 2016-11-14 11:44:01 MindFlyer all this is very helpful 2016-11-14 11:44:21 +SpaceManiac np, happy to make all this domain knowledge useful somehow 2016-11-14 11:44:25 MindFlyer SpaceManiac, would you recomment UDP or TCP for this protocol? 2016-11-14 11:45:49 MindFlyer i know doom 3 uses UDP with some tricks to compensate packet losses, while MC uses TCP, and apparently some people are not happy with it 2016-11-14 11:46:16 MindFlyer from a designer standpoint, TCP is certainly more attractive... for obvious reasons 2016-11-14 11:46:30 MindFlyer i mean a _lazy_ designer 2016-11-14 11:46:49 +SpaceManiac TCP is optimized for linear byte streams, if your traffic resembles that use it 2016-11-14 11:47:11 +SpaceManiac if low latency is important, like for a twitch shooter or action game, probably want to use UDP 2016-11-14 11:47:32 MindFlyer i guess latency is not the main focus 2016-11-14 11:47:41 +SpaceManiac for a Minecraft-like game, you could probably *get away with* using TCP, but I don't think it would be best 2016-11-14 11:47:59 MindFlyer if you had to redesign MC, what would you use? 2016-11-14 11:48:14 MindFlyer same protocol al doom 3? 2016-11-14 11:49:06 +SpaceManiac hmm, similar, maybe; MC is slower-paced and there's the dynamic world to contend with 2016-11-14 11:49:56 +SpaceManiac but with the hindsight that a lot of people have somehow managed to take pvp seriously in this game, I'd probably try to let the action aspect shine through 2016-11-14 11:50:15 MindFlyer ok 2016-11-14 11:50:19 MindFlyer what about physics? 2016-11-14 11:50:47 MindFlyer if i wanted to introduce actual physics in the game, and not just gravity as in MC 2016-11-14 11:50:57 MindFlyer would that change anything? 2016-11-14 11:51:04 MindFlyer would that completely rule out TCP? 2016-11-14 11:51:49 +SpaceManiac It'd make it less attractive, the same things you have to do to make UDP work also make networked physics work better 2016-11-14 11:52:29 MindFlyer so UDP it is 2016-11-14 11:53:31 MindFlyer it's gonna take me forever :D 2016-11-14 12:29:20 --> C4K3 (~C4K3@0127801301.0.fullrate.ninja) a rejoint #mcdevs 2016-11-14 14:22:57 --> UUID02 (~UUID00@BSN-182-237-44.dynamic.siol.net) a rejoint #mcdevs 2016-11-14 14:26:01 <-- UUID01 (~UUID00@BSN-182-237-44.dynamic.siol.net) a quitté (Ping timeout: 258 seconds) 2016-11-14 14:47:24 --> UUID01 (~UUID00@BSN-182-237-44.dynamic.siol.net) a rejoint #mcdevs 2016-11-14 14:50:22 <-- UUID02 (~UUID00@BSN-182-237-44.dynamic.siol.net) a quitté (Ping timeout: 240 seconds) 2016-11-14 15:33:57 <-- UUID01 (~UUID00@BSN-182-237-44.dynamic.siol.net) a quitté (Read error: Connection reset by peer) 2016-11-14 15:34:58 --> Tristitia (~tristitia@static-ip-69-64-50-196.inaddr.ip-pool.com) a rejoint #mcdevs 2016-11-14 15:36:21 --> UUID00 (~UUID00@BSN-210-233-141.dynamic.siol.net) a rejoint #mcdevs 2016-11-14 16:10:54 Botched [VERSION] Minecraft Snapshot 1.11 has been released! 2016-11-14 16:10:57 Botched [VERSION] Minecraft Release 1.11 has been released! 2016-11-14 16:25:32 MiniDigger pff, late ^^ 2016-11-14 16:28:04 Mustek nope, blogpost was early 2016-11-14 16:28:41 MiniDigger oh 2016-11-14 16:28:54 MiniDigger nice to have it here 2016-11-14 16:29:20 <-- realz (~realz@unaffiliated/realazthat) a quitté (Read error: Connection reset by peer) 2016-11-14 16:55:25 --> UUID01 (~UUID00@BSN-210-233-141.dynamic.siol.net) a rejoint #mcdevs 2016-11-14 16:55:37 <-- UUID00 (~UUID00@BSN-210-233-141.dynamic.siol.net) a quitté (Ping timeout: 260 seconds) 2016-11-14 16:57:39 --> UUID00 (~UUID00@BSN-210-233-141.dynamic.siol.net) a rejoint #mcdevs 2016-11-14 17:00:20 <-- UUID01 (~UUID00@BSN-210-233-141.dynamic.siol.net) a quitté (Ping timeout: 268 seconds) 2016-11-14 17:00:56 <-- wlp1s1 (jeffl@unaffiliated/iczero) a quitté (Quit: jeffl35 has quit (Quit: jeffl35 has quit (Quit: jeffl35 has quit (Quit: jeffl35 has quit ...) 2016-11-14 17:01:42 --> iczero (jeffl@unaffiliated/iczero) a rejoint #mcdevs 2016-11-14 17:04:06 -- iczero est maintenant connu sous le nom wlp1s1 2016-11-14 17:17:01 --> realz (~realz@unaffiliated/realazthat) a rejoint #mcdevs 2016-11-14 17:22:00 --> electronicboy (~electroni@atlas.valaria.pw) a rejoint #mcdevs 2016-11-14 17:24:18 --> progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a rejoint #mcdevs 2016-11-14 17:56:44 --> Cxom (~Trinoxtio@rn-nat-129-97-131-0.dynamic.uwaterloo.ca) a rejoint #mcdevs 2016-11-14 17:59:09 --> HiImJoshua (5fde1aca@gateway/web/freenode/ip.95.222.26.202) a rejoint #mcdevs 2016-11-14 17:59:15 HiImJoshua Hey guys, i'm creating a client sort of thing for minecraft in c#, but i ran into a problem. When i want to send a "use item"(right clock hand) the nbtwriter requires rootTagName any idea on what that should be set to? 2016-11-14 17:59:30 HiImJoshua btw im using https://github.com/paulcbetts/refit for writing nbt data. 2016-11-14 18:05:07 +ammar2 http://minecraft.gamepedia.com/Player.dat_format#Item_structure 2016-11-14 18:05:22 +ammar2 >The item's root tag. Some instances may give this tag a name, other times it is nameless because it is in a list. 2016-11-14 18:05:51 +ammar2 so I would think anything should work 2016-11-14 18:05:52 HiImJoshua Ahh alright, i'll check if a name is given 2016-11-14 18:34:22 <-- HiImJoshua (5fde1aca@gateway/web/freenode/ip.95.222.26.202) a quitté (Quit: Page closed) 2016-11-14 19:23:02 <-- progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-11-14 19:23:23 --> progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a rejoint #mcdevs 2016-11-14 19:25:25 <-- progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a quitté (Client Quit) 2016-11-14 20:37:12 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2016-11-14 21:31:31 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Ping timeout: 258 seconds) 2016-11-14 21:45:40 --> progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a rejoint #mcdevs 2016-11-14 21:49:13 <-- progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a quitté (Client Quit) 2016-11-14 21:52:57 Not-ba84 [Charge] Wallbraker pushed 4 commits to master [+0/-0/±6] https://git.io/vXXOK 2016-11-14 21:52:58 Not-ba84 [Charge] Wallbraker cad62cb - power: AMD variant was faster on nVidia 2016-11-14 21:53:00 Not-ba84 [Charge] Wallbraker 14273b8 - power: Refactor shaders a bit 2016-11-14 21:53:01 Not-ba84 [Charge] Wallbraker f70f707 - power: Add key to reset view 2016-11-14 21:53:03 Not-ba84 [Charge] Wallbraker bf5176f - power: Manual unrolling of the inner loop 2016-11-14 22:06:57 --> progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a rejoint #mcdevs 2016-11-14 22:12:25 --> JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a rejoint #mcdevs 2016-11-14 23:00:48 <-- realz (~realz@unaffiliated/realazthat) a quitté (Read error: Connection reset by peer) 2016-11-15 00:01:37 --> pokechu22 (322347c6@gateway/web/freenode/ip.50.35.71.198) a rejoint #mcdevs 2016-11-15 00:02:17 --> Pangea (~Pangea@unaffiliated/pangea) a rejoint #mcdevs 2016-11-15 00:12:28 <-- JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a quitté (Ping timeout: 245 seconds) 2016-11-15 00:54:28 <-- Pangea (~Pangea@unaffiliated/pangea) a quitté (Quit: into the real world!) 2016-11-15 00:56:58 --> pokechu22_ (322347c6@gateway/web/freenode/ip.50.35.71.198) a rejoint #mcdevs 2016-11-15 00:57:20 <-- pokechu22 (322347c6@gateway/web/freenode/ip.50.35.71.198) a quitté (Ping timeout: 260 seconds) 2016-11-15 01:02:44 -- pokechu22_ est maintenant connu sous le nom pokechu22 2016-11-15 01:08:11 --> pokechu22_ (322347c6@gateway/web/freenode/ip.50.35.71.198) a rejoint #mcdevs 2016-11-15 01:10:04 --> realz (~realz@unaffiliated/realazthat) a rejoint #mcdevs 2016-11-15 01:11:55 <-- pokechu22 (322347c6@gateway/web/freenode/ip.50.35.71.198) a quitté (Ping timeout: 260 seconds) 2016-11-15 01:40:27 --> kamcio96 (~kamcio96@host-81-190-232-89.dynamic.mm.pl) a rejoint #mcdevs 2016-11-15 01:48:22 --> kamcio96_ (~kamcio96@18.ip-51-255-49.eu) a rejoint #mcdevs 2016-11-15 01:51:42 <-- kamcio96 (~kamcio96@host-81-190-232-89.dynamic.mm.pl) a quitté (Ping timeout: 260 seconds) 2016-11-15 02:01:26 --> kamcio96__ (~kamcio96@host-81-190-232-89.dynamic.mm.pl) a rejoint #mcdevs 2016-11-15 02:04:53 <-- kamcio96_ (~kamcio96@18.ip-51-255-49.eu) a quitté (Ping timeout: 260 seconds) 2016-11-15 02:46:57 <-- UUID00 (~UUID00@BSN-210-233-141.dynamic.siol.net) a quitté (Ping timeout: 260 seconds) 2016-11-15 02:56:43 <-- Techcable (znc@irc.techcable.net) a quitté (Quit: ZNC - http://znc.in) 2016-11-15 02:57:40 --> Techcable (znc@irc.techcable.net) a rejoint #mcdevs 2016-11-15 03:45:36 --> JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a rejoint #mcdevs 2016-11-15 04:21:41 <-- kashike (kashike@unaffiliated/kashike) a quitté (Remote host closed the connection) 2016-11-15 04:23:00 --> kashike (kashike@unaffiliated/kashike) a rejoint #mcdevs 2016-11-15 04:48:45 <-- Andrio (Andrio@gateway/shell/yourbnc/x-htieshaengmtezeh) a quitté (Quit: I shall return, later...) 2016-11-15 04:53:14 --> Andrio (Andrio@gateway/shell/yourbnc/x-lubstfkaacvzclrl) a rejoint #mcdevs 2016-11-15 05:00:38 <-- Andrio (Andrio@gateway/shell/yourbnc/x-lubstfkaacvzclrl) a quitté (Ping timeout: 256 seconds) 2016-11-15 05:31:24 <-- progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-11-15 06:26:02 --> Akaibu (uid118096@gateway/web/irccloud.com/x-kmrjzrahdiyshtbi) a rejoint #mcdevs 2016-11-15 06:36:51 <-- pokechu22_ (322347c6@gateway/web/freenode/ip.50.35.71.198) a quitté (Ping timeout: 260 seconds) 2016-11-15 06:37:14 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2016-11-15 06:40:49 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 256 seconds) 2016-11-15 06:40:50 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2016-11-15 06:40:57 <-- kamcio96__ (~kamcio96@host-81-190-232-89.dynamic.mm.pl) a quitté (Ping timeout: 246 seconds) 2016-11-15 07:10:25 --> Andrio (Andrio@gateway/shell/yourbnc/x-oiiykmzzogolisum) a rejoint #mcdevs 2016-11-15 07:50:43 <-- RoboMWM (~RoboMWM@tf.us.to) a quitté (Read error: Connection reset by peer) 2016-11-15 07:56:30 --> RoboMWM (~RoboMWM@tf.us.to) a rejoint #mcdevs 2016-11-15 08:13:53 <-- Cxom (~Trinoxtio@rn-nat-129-97-131-0.dynamic.uwaterloo.ca) a quitté (Ping timeout: 265 seconds) 2016-11-15 09:27:49 <-- JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a quitté (Ping timeout: 260 seconds) 2016-11-15 09:40:06 --> JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a rejoint #mcdevs 2016-11-15 11:28:01 <-- JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a quitté (Remote host closed the connection) 2016-11-15 12:03:48 --> UUID00 (~UUID00@BSN-210-233-141.dynamic.siol.net) a rejoint #mcdevs 2016-11-15 12:18:38 Not-ba84 [Charge] Wallbraker pushed 3 commits to master [+1/-0/±3] https://git.io/vX1Vh 2016-11-15 12:18:39 Not-ba84 [Charge] Wallbraker a9aea19 - power: Refactor out SimpleSVO 2016-11-15 12:18:41 Not-ba84 [Charge] Wallbraker bb29974 - power: Don't create AlignTest shader on init 2016-11-15 12:18:42 Not-ba84 [Charge] Wallbraker 49c49de - power: Add InstanceBuffer 2016-11-15 12:21:02 <-- dexter0 (~dexter0@2601:647:4502:8c00:3198:be96:e0d7:8a99) a quitté (Ping timeout: 240 seconds) 2016-11-15 12:25:41 --> dexter0 (~dexter0@2601:647:4502:8c00:6dcc:9b87:e53e:123d) a rejoint #mcdevs 2016-11-15 12:36:05 --> progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a rejoint #mcdevs 2016-11-15 13:19:43 <-- progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-11-15 13:36:46 --> progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a rejoint #mcdevs 2016-11-15 14:02:13 --> kamcio96__ (~kamcio96@host-81-190-232-89.dynamic.mm.pl) a rejoint #mcdevs 2016-11-15 14:02:29 <-- progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-11-15 14:19:26 --> progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a rejoint #mcdevs 2016-11-15 14:50:41 <-- progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-11-15 14:52:20 --> Cxom (~Trinoxtio@rn-nat-129-97-131-0.dynamic.uwaterloo.ca) a rejoint #mcdevs 2016-11-15 15:02:19 <-- MindFlyer (~MindFlyer@unaffiliated/mindflyer) a quitté (Remote host closed the connection) 2016-11-15 15:02:41 --> MindFlyer (~MindFlyer@unaffiliated/mindflyer) a rejoint #mcdevs 2016-11-15 15:03:07 <-- MindFlyer (~MindFlyer@unaffiliated/mindflyer) a quitté (Remote host closed the connection) 2016-11-15 15:03:26 --> MindFlyer (~MindFlyer@unaffiliated/mindflyer) a rejoint #mcdevs 2016-11-15 15:27:13 <-- MindFlyer (~MindFlyer@unaffiliated/mindflyer) a quitté (Remote host closed the connection) 2016-11-15 15:27:30 --> MindFlyer (~MindFlyer@unaffiliated/mindflyer) a rejoint #mcdevs 2016-11-15 15:33:38 Not-ba84 [Charge] Wallbraker pushed 11 commits to master [+0/-0/±43] https://git.io/vX1jT 2016-11-15 15:33:40 Not-ba84 [Charge] Wallbraker 49679ed - lib/stb: Use new style 2016-11-15 15:33:41 Not-ba84 [Charge] Wallbraker dd74052 - charge: Avoid string concant 2016-11-15 15:33:43 Not-ba84 [Charge] Wallbraker 2895da6 - charge: Use new style 2016-11-15 15:33:44 Not-ba84 [Charge] ... and 8 more commits. 2016-11-15 16:56:45 Hafydd Concan, or concan't? 2016-11-15 17:10:59 <-- MindFlyer (~MindFlyer@unaffiliated/mindflyer) a quitté (Remote host closed the connection) 2016-11-15 17:11:18 --> MindFlyer (~MindFlyer@CPEf0f249078013-CMf0f249078010.cpe.net.fido.ca) a rejoint #mcdevs 2016-11-15 17:11:27 <-- MindFlyer (~MindFlyer@CPEf0f249078013-CMf0f249078010.cpe.net.fido.ca) a quitté (Changing host) 2016-11-15 17:11:27 --> MindFlyer (~MindFlyer@unaffiliated/mindflyer) a rejoint #mcdevs 2016-11-15 17:35:01 --> progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a rejoint #mcdevs 2016-11-15 18:19:05 <-- progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-11-15 18:32:42 --> progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a rejoint #mcdevs 2016-11-15 18:39:58 _MylesC I'm assuming item stacks with an amount of 0 were removed from 1.11? 2016-11-15 19:37:24 redstonehelper yes 2016-11-15 19:38:25 <-- progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-11-15 21:03:03 --> progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a rejoint #mcdevs 2016-11-15 21:33:07 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2016-11-15 21:42:31 <-- johni0702 (johni0702@johni0702.de) a quitté (Read error: Connection reset by peer) 2016-11-15 21:44:54 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Quit: Tachyon_) 2016-11-15 21:47:13 --> johni0702 (johni0702@johni0702.de) a rejoint #mcdevs 2016-11-15 22:02:10 --> JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a rejoint #mcdevs 2016-11-15 23:16:34 <-- progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-11-15 23:17:24 <-- MindFlyer (~MindFlyer@unaffiliated/mindflyer) a quitté (Remote host closed the connection) 2016-11-15 23:17:41 --> MindFlyer (~MindFlyer@CPEf0f249078013-CMf0f249078010.cpe.net.fido.ca) a rejoint #mcdevs 2016-11-15 23:17:41 <-- MindFlyer (~MindFlyer@CPEf0f249078013-CMf0f249078010.cpe.net.fido.ca) a quitté (Changing host) 2016-11-15 23:17:41 --> MindFlyer (~MindFlyer@unaffiliated/mindflyer) a rejoint #mcdevs 2016-11-16 00:12:50 --> pokechu22 (322347c6@gateway/web/freenode/ip.50.35.71.198) a rejoint #mcdevs 2016-11-16 00:25:40 Not-ba84 [minecraft-data] rom1504 pushed 4 commits to master [+2/-0/±5] https://git.io/vXDV2 2016-11-16 00:25:41 Not-ba84 [minecraft-data] rom1504 0734950 - update version files and import 1.11 protocol from 16w35a 2016-11-16 00:25:43 Not-ba84 [minecraft-data] rom1504 869b304 - add 1.11 changes (see http://wiki.vg/index.php?title=Pre-release_protocol&oldid=8249) 2016-11-16 00:25:44 Not-ba84 [minecraft-data] rom1504 0ea7987 - add 1.11 support to README (just the protocol) 2016-11-16 00:25:46 Not-ba84 [minecraft-data] rom1504 e410bae - Release 2.7.0 2016-11-16 00:25:55 Not-ba84 [minecraft-data] rom1504 tagged e410bae as 2.7.0 https://git.io/vXDVa 2016-11-16 00:30:16 pokechu22 Burger for 1.11: http://pokechu22.github.io/Burger/1.11.html (http://pokechu22.github.io/Burger/1.11.json) - sounds links on the wiki have already been updated. 2016-11-16 00:41:31 --> progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a rejoint #mcdevs 2016-11-16 00:56:51 <-- Dadido3_ (~quassel@p2003007A8B262900942C973C73CDF488.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2016-11-16 00:58:04 --> Dadido3 (~quassel@p2003007A8B262900C92C4BF4398B22B5.dip0.t-ipconnect.de) a rejoint #mcdevs 2016-11-16 01:23:35 <-- kamcio96__ (~kamcio96@host-81-190-232-89.dynamic.mm.pl) a quitté (Quit: Leaving) 2016-11-16 01:44:10 Not-ba84 [mineflayer] rom1504 deleted branch greenkeeper-minecraft-data-2.9.0 2016-11-16 01:44:11 Not-ba84 [flying-squid] rom1504 deleted branch greenkeeper-minecraft-data-2.9.0 2016-11-16 02:09:13 <-- coolsa (~coolsa@unaffiliated/coolsa) a quitté (Ping timeout: 260 seconds) 2016-11-16 02:24:02 <-- mbaxter (~mbax@mcblockit/staff/mbaxter) a quitté (Quit: muahahahahahaha) 2016-11-16 02:34:15 --> mbaxter (~mbax@mcblockit/staff/mbaxter) a rejoint #mcdevs 2016-11-16 02:56:34 <-- zix (uid195779@gateway/web/irccloud.com/x-gqioqklqijsvlzli) a quitté (Quit: Connection closed for inactivity) 2016-11-16 03:01:56 <-- progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-11-16 03:14:48 --> progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a rejoint #mcdevs 2016-11-16 03:34:37 <-- UUID00 (~UUID00@BSN-210-233-141.dynamic.siol.net) a quitté (Ping timeout: 260 seconds) 2016-11-16 03:38:22 --> coolsa (~coolsa@unaffiliated/coolsa) a rejoint #mcdevs 2016-11-16 04:26:38 <-- Jailout2000 (~Jailout20@unaffiliated/jailout2000) a quitté (Ping timeout: 245 seconds) 2016-11-16 04:43:08 --> Jailout2000 (~Jailout20@unaffiliated/jailout2000) a rejoint #mcdevs 2016-11-16 06:36:20 --> redstonehelper_ (~redstoneh@p4FD667BE.dip0.t-ipconnect.de) a rejoint #mcdevs 2016-11-16 06:36:20 <-- redstonehelper_ (~redstoneh@p4FD667BE.dip0.t-ipconnect.de) a quitté (Changing host) 2016-11-16 06:36:20 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2016-11-16 06:39:30 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 248 seconds) 2016-11-16 06:39:30 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2016-11-16 07:37:24 <-- progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-11-16 08:57:43 <-- Cxom (~Trinoxtio@rn-nat-129-97-131-0.dynamic.uwaterloo.ca) a quitté (Ping timeout: 265 seconds) 2016-11-16 09:05:36 ishitatsuyuki Why Minecraft server list doesn't use UDP? 2016-11-16 09:09:08 <-- JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a quitté (Ping timeout: 245 seconds) 2016-11-16 09:10:10 Hafydd ishitatsuyuki: I would expect it's for backward-compatibility, and to reduce the complexity of opening ports for a Minecraft server, if there's any reason. 2016-11-16 09:13:38 ishitatsuyuki Good point 2016-11-16 09:16:12 <-- ishitatsuyuki (~quassel@unaffiliated/ishitatsuyuki) a quitté (Read error: Connection reset by peer) 2016-11-16 09:17:15 --> ishitatsuyuki (~quassel@unaffiliated/ishitatsuyuki) a rejoint #mcdevs 2016-11-16 09:26:33 Andrio I kind of wonder how it would work if it did. 2016-11-16 09:29:07 ishitatsuyuki Andrio: why not? DNS is exactly this scheme 2016-11-16 09:30:06 Andrio mm 2016-11-16 09:58:51 +md_5 because UDP is a hassle 2016-11-16 09:59:06 +md_5 and most things aside from movement need to be reliable 2016-11-16 10:00:06 dx md_5: they said server *list* 2016-11-16 10:00:09 ishitatsuyuki No, the server list ping is meant to be realtime 2016-11-16 10:00:18 +md_5 oh the server list 2016-11-16 10:00:18 ishitatsuyuki Retried every second or something? 2016-11-16 10:00:28 +md_5 my answer is: no reason to make it udp 2016-11-16 10:00:38 dx yeah i don't see a reason either 2016-11-16 10:01:58 dx ishitatsuyuki: 'realtime' in this context usually refers to low latency data streams. it's not a stream and latency doesn't matter 2016-11-16 10:01:58 ishitatsuyuki TCP is high overhead, you see Google is making QUIC... 2016-11-16 10:02:19 ishitatsuyuki s/realtime/regularly updated/ 2016-11-16 10:02:34 +md_5 its literally a few bytes 2016-11-16 10:02:46 +md_5 its not as if the server list is a 10gbit stream of data 2016-11-16 10:02:51 +md_5 thats what google cares about :) 2016-11-16 10:05:45 ishitatsuyuki You send 3 way handshake for a few bytes 2016-11-16 10:06:00 ishitatsuyuki That's why Google is simplifying the handshake 2016-11-16 10:07:29 +md_5 I dont think anyone here cares about a few byte 3 way handshake when joining the server uses as much bandwidth as a hundred thousand pings 2016-11-16 10:07:35 dx the good old "google did it so it must be good" 2016-11-16 10:08:13 dx google uses kubernetes so i should use it to host my zero-visitor blog! 2016-11-16 10:08:30 dx what is scale 2016-11-16 10:08:32 +md_5 if you want VC funding you gotta use docker 2016-11-16 10:09:06 <-- Amaranth (~Amaranth@ubuntu/member/Amaranth) a quitté (Quit: Sleep time...) 2016-11-16 10:11:01 dx why isn't minecraft designed around a unikernel architecture with a custom built hand tuned tcp/ip stack? 2016-11-16 10:51:14 +Dinnerbone Minecraft should use home grown free range organic artisan packets 2016-11-16 11:06:13 <-- barneygale_ (~barneygal@mail.thefoundry.co.uk) a quitté (Ping timeout: 245 seconds) 2016-11-16 11:07:13 +SinZ rule of thumb: don't use UDP unless you have severe low latency requirements, such as voip or video streaming (games like it too sometimes for super low latency) 2016-11-16 11:22:13 --> barneygale (~barneygal@mail.thefoundry.co.uk) a rejoint #mcdevs 2016-11-16 11:50:55 ishitatsuyuki Dns 2016-11-16 11:56:13 <-- ishitatsuyuki (~quassel@unaffiliated/ishitatsuyuki) a quitté (Remote host closed the connection) 2016-11-16 11:57:44 --> ishitatsuyuki (~quassel@unaffiliated/ishitatsuyuki) a rejoint #mcdevs 2016-11-16 12:12:24 MindFlyer SinZ, why? 2016-11-16 12:13:20 MindFlyer SinZ, they told me UDP would be good for games like minecraft 2016-11-16 12:13:39 +SinZ MindFlyer: reliability is a nice thing, the internet is shit at sending things 2016-11-16 12:14:00 MindFlyer SinZ, but what's wrong with doom 3's approach? 2016-11-16 12:16:09 MindFlyer send non-critical data along with critical data, and keep re-sending the same critical data (along with new non-critical data) until an ack is received 2016-11-16 12:16:15 MindFlyer more or less this is how doom 3 works 2016-11-16 12:16:25 MindFlyer all UDP 2016-11-16 12:16:34 MindFlyer it seems a good protocol to me 2016-11-16 12:17:48 MindFlyer it's as fast as possible for non-critical data and it's not worse than TCP for critical data (possibly a lot better, actually) 2016-11-16 12:35:53 --> zix (uid195779@gateway/web/irccloud.com/x-gbcclcelyfdhkdoh) a rejoint #mcdevs 2016-11-16 12:47:39 ishitatsuyuki Chunks are so big 2016-11-16 12:47:59 ishitatsuyuki You don't want to spend too much time on congestion control algortihms 2016-11-16 13:15:04 <-- willies952002 (~willies95@irc.domnian.com) a quitté (Ping timeout: 250 seconds) 2016-11-16 13:16:17 --> willies952002 (~willies95@irc.domnian.com) a rejoint #mcdevs 2016-11-16 13:19:36 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2016-11-16 13:33:49 rom1504 that's what mcpe uses, except wrong 2016-11-16 13:40:54 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Quit: Tachyon_) 2016-11-16 13:45:22 ishitatsuyuki RakNet is totally junk 2016-11-16 13:45:36 ishitatsuyuki Unmaintained slow UDP complicated thing 2016-11-16 13:47:01 rom1504 indeed 2016-11-16 13:48:31 rom1504 I think it would be cool to design a good voxel protocol, and then to make plugins to make minecraft servers/clients use it. 2016-11-16 14:01:58 --> Cxom (~Trinoxtio@rn-nat-129-97-131-0.dynamic.uwaterloo.ca) a rejoint #mcdevs 2016-11-16 14:26:28 <-- barneygale (~barneygal@mail.thefoundry.co.uk) a quitté (Remote host closed the connection) 2016-11-16 14:27:56 --> UUID00 (~UUID00@BSN-210-233-141.dynamic.siol.net) a rejoint #mcdevs 2016-11-16 14:46:34 <-- zix (uid195779@gateway/web/irccloud.com/x-gbcclcelyfdhkdoh) a quitté (Quit: Connection closed for inactivity) 2016-11-16 15:00:53 <-- zml (~zml@minions.aoeu.xyz) a quitté (Ping timeout: 258 seconds) 2016-11-16 15:02:49 --> progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a rejoint #mcdevs 2016-11-16 15:12:55 --> zml (~zml@minions.aoeu.xyz) a rejoint #mcdevs 2016-11-16 15:30:00 <-- progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-11-16 15:47:31 --> progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a rejoint #mcdevs 2016-11-16 15:54:33 <-- KnownUnown (KnownUnown@die.in.firrre.com) a quitté (Ping timeout: 258 seconds) 2016-11-16 16:06:26 <-- progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a quitté (Read error: Connection reset by peer) 2016-11-16 16:15:30 --> KnownUnown (KnownUnown@die.in.firrre.com) a rejoint #mcdevs 2016-11-16 16:59:57 +SpaceManiac a project named "Spout" once tried to do this 2016-11-16 17:11:12 <-- ShaRose (ShaRose@i.am.sharo.se) a quitté (Quit: I appear to have left for some reason.) 2016-11-16 17:11:32 --> ShaRose (ShaRose@i.am.sharo.se) a rejoint #mcdevs 2016-11-16 18:05:30 <-- KnownUnown (KnownUnown@die.in.firrre.com) a quitté (Ping timeout: 260 seconds) 2016-11-16 18:34:37 --> KnownUnown (KnownUnown@die.in.firrre.com) a rejoint #mcdevs 2016-11-16 19:24:38 --> JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a rejoint #mcdevs 2016-11-16 19:30:36 <-- csnxs (sean@unaffiliated/plussean) a quitté (Ping timeout: 250 seconds) 2016-11-16 19:34:43 --> csnxs (sean@unaffiliated/plussean) a rejoint #mcdevs 2016-11-16 19:39:11 <-- csnxs (sean@unaffiliated/plussean) a quitté (Ping timeout: 258 seconds) 2016-11-16 20:02:28 <-- wlp1s1 (jeffl@unaffiliated/iczero) a quitté (Quit: jeffl35 has quit (Quit: jeffl35 has quit (Quit: jeffl35 has quit (Quit: jeffl35 has quit ...) 2016-11-16 20:03:20 --> iczero (jeffl@unaffiliated/iczero) a rejoint #mcdevs 2016-11-16 20:15:21 -- iczero est maintenant connu sous le nom wlp1s1 2016-11-16 20:50:23 --> csnxs (sean@unaffiliated/plussean) a rejoint #mcdevs 2016-11-16 21:00:03 <-- UUID00 (~UUID00@BSN-210-233-141.dynamic.siol.net) a quitté (Read error: Connection reset by peer) 2016-11-16 21:00:25 --> UUID00 (~UUID00@BSN-210-233-141.dynamic.siol.net) a rejoint #mcdevs 2016-11-16 23:02:52 <-- Techcable (znc@irc.techcable.net) a quitté (Quit: ZNC - http://znc.in) 2016-11-16 23:04:46 --> Techcable (znc@irc.techcable.net) a rejoint #mcdevs 2016-11-16 23:12:38 <-- Techcable (znc@irc.techcable.net) a quitté (Quit: ZNC - http://znc.in) 2016-11-16 23:14:40 --> Techcable (znc@irc.techcable.net) a rejoint #mcdevs 2016-11-16 23:29:29 Not-ba84 [Charge] Wallbraker pushed 1 commit to master [+0/-0/±3] https://git.io/vX9sH 2016-11-16 23:29:30 Not-ba84 [Charge] Wallbraker 08e01b0 - core: Make it possible to request debug OpenGL context 2016-11-16 23:34:52 --> barneygale (~barneygal@94.13.18.41) a rejoint #mcdevs 2016-11-16 23:54:43 --> Protocol_7 (~Protocol_@togame.ipwnage.com) a rejoint #mcdevs 2016-11-17 00:04:42 <-- ShaRose (ShaRose@i.am.sharo.se) a quitté (Ping timeout: 240 seconds) 2016-11-17 00:13:17 --> ShaRose (ShaRose@i.am.sharo.se) a rejoint #mcdevs 2016-11-17 00:29:21 <-- Protocol_7 (~Protocol_@togame.ipwnage.com) a quitté (Quit: Adios) 2016-11-17 00:29:41 --> Protocol_7 (~Protocol_@togame.ipwnage.com) a rejoint #mcdevs 2016-11-17 00:51:45 --> Amaranth (~Amaranth@ubuntu/member/Amaranth) a rejoint #mcdevs 2016-11-17 00:51:45 -- Mode #mcdevs [+v Amaranth] par ChanServ 2016-11-17 00:57:30 -- yorick_ est maintenant connu sous le nom yorick 2016-11-17 01:10:26 <-- Krenair (~alex@wikimedia/Krenair) a quitté (Ping timeout: 248 seconds) 2016-11-17 01:14:39 --> Krenair (~alex@wikimedia/Krenair) a rejoint #mcdevs 2016-11-17 01:31:18 <-- barneygale (~barneygal@94.13.18.41) a quitté (Ping timeout: 250 seconds) 2016-11-17 01:59:11 <-- begin_end (admin@ho.by) a quitté (Read error: Connection reset by peer) 2016-11-17 02:05:12 --> begin_end (admin@ho.by) a rejoint #mcdevs 2016-11-17 02:17:22 <-- zml (~zml@minions.aoeu.xyz) a quitté (Ping timeout: 265 seconds) 2016-11-17 02:30:03 --> zml (~zml@minions.aoeu.xyz) a rejoint #mcdevs 2016-11-17 03:04:37 <-- UUID00 (~UUID00@BSN-210-233-141.dynamic.siol.net) a quitté (Ping timeout: 258 seconds) 2016-11-17 03:13:53 --> balrog_ (~balrog@unaffiliated/balrog) a rejoint #mcdevs 2016-11-17 03:14:46 <-- balrog (~balrog@unaffiliated/balrog) a quitté (Ping timeout: 244 seconds) 2016-11-17 03:16:10 -- balrog_ est maintenant connu sous le nom balrog 2016-11-17 03:16:40 --> unknown54 (979f822c@gateway/web/freenode/ip.151.159.130.44) a rejoint #mcdevs 2016-11-17 03:19:08 <-- unknown54 (979f822c@gateway/web/freenode/ip.151.159.130.44) a quitté (Client Quit) 2016-11-17 03:19:16 --> UUID00 (~UUID00@BSN-210-233-141.dynamic.siol.net) a rejoint #mcdevs 2016-11-17 03:39:18 MindFlyer ishitatsuyuki, you think big chunks make UDP perform worse than TCP? can you elaborate on that, please? 2016-11-17 03:39:52 MindFlyer and why do you shit at suyuki? poor suyuki 2016-11-17 03:50:52 <-- Black-Hole (~BlackHole@p2003007E4F76EF002D5ACE16F51AB982.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2016-11-17 03:52:29 --> MomoMC (~MomoMC@modemcable181.152-177-173.mc.videotron.ca) a rejoint #mcdevs 2016-11-17 03:53:13 --> BlackHole (~BlackHole@p2003007E4F76EF00DD198B5367313BD3.dip0.t-ipconnect.de) a rejoint #mcdevs 2016-11-17 03:53:36 -- BlackHole est maintenant connu sous le nom Guest19614 2016-11-17 04:03:31 <-- balrog (~balrog@unaffiliated/balrog) a quitté (Quit: Bye) 2016-11-17 04:04:46 <-- Guest19614 (~BlackHole@p2003007E4F76EF00DD198B5367313BD3.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2016-11-17 04:08:50 --> Black-Hole (~BlackHole@p2003007E4F76EF00A0DC3CCBDA396561.dip0.t-ipconnect.de) a rejoint #mcdevs 2016-11-17 04:13:08 --> balrog (~balrog@unaffiliated/balrog) a rejoint #mcdevs 2016-11-17 04:48:20 <-- MomoMC (~MomoMC@modemcable181.152-177-173.mc.videotron.ca) a quitté (Quit: Leaving) 2016-11-17 04:50:29 ishitatsuyuki Tatsuyuki Ishi 2016-11-17 04:50:32 ishitatsuyuki A Japanese name 2016-11-17 04:50:58 ishitatsuyuki TCP algorithms are polished, while UDP depends on the user space effort. 2016-11-17 04:51:07 ishitatsuyuki ^ MindFlyer 2016-11-17 04:51:17 +ammar2 well, to an extent 2016-11-17 04:51:22 +ammar2 TCP is designed for a very broad use case 2016-11-17 04:51:33 +ammar2 you can definitely outperform it for your specific use case 2016-11-17 04:51:49 +ammar2 which in the case of games, big companies often end up doing 2016-11-17 04:52:16 +ammar2 though I guess you covered that point with >depends on the user space effort. 2016-11-17 04:57:23 +ammar2 okay here we go, there's this paper that john carmack endorsed, which has pretty interesting details on what works well with tcp and games and what doesn't 2016-11-17 04:57:27 +ammar2 http://www.iis.sinica.edu.tw/~swc/pub/tcp_in_games.html 2016-11-17 04:57:33 +ammar2 been searching for it for a while 2016-11-17 04:58:23 +ammar2 bear in mind its for MMORPGs where the world data is mostly stored on the client and the server sends entity information mostly 2016-11-17 04:58:36 +ammar2 so it doesn't apply completely to a minecraft like sandbox game 2016-11-17 04:58:51 +ammar2 but still a good read if you have the time 2016-11-17 05:26:04 <-- UUID00 (~UUID00@BSN-210-233-141.dynamic.siol.net) a quitté (Ping timeout: 258 seconds) 2016-11-17 06:33:23 Meeeh_ > Because game packets are generally small, the TCP/IP header takes up 46% of the total bandwidth used. 2016-11-17 06:34:11 Meeeh_ this isn't exacly like that, as this depend and how you send it, in java using netty often multiple placets are sent in one TCP packet 2016-11-17 06:34:32 --> redstonehelper_ (~redstoneh@p4FCCF485.dip0.t-ipconnect.de) a rejoint #mcdevs 2016-11-17 06:34:32 <-- redstonehelper_ (~redstoneh@p4FCCF485.dip0.t-ipconnect.de) a quitté (Changing host) 2016-11-17 06:34:32 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2016-11-17 06:36:38 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 260 seconds) 2016-11-17 06:36:39 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2016-11-17 06:59:31 <-- pokechu22 (322347c6@gateway/web/freenode/ip.50.35.71.198) a quitté (Ping timeout: 260 seconds) 2016-11-17 07:17:56 +ammar2 Meeeh_: depends entirely on how much state is changing within the game 2016-11-17 07:18:14 +ammar2 if you only need to update the position of a single player, even netty can't group anything 2016-11-17 07:18:29 +ammar2 (only need to update that position and nothing else has changed that is) 2016-11-17 07:27:11 <-- Cxom (~Trinoxtio@rn-nat-129-97-131-0.dynamic.uwaterloo.ca) a quitté (Ping timeout: 265 seconds) 2016-11-17 08:57:06 <-- jnoah (~brutal_ch@osuosl/staff/brutal-chaos) a quitté (Ping timeout: 260 seconds) 2016-11-17 09:01:23 <-- MindFlyer (~MindFlyer@unaffiliated/mindflyer) a quitté (Remote host closed the connection) 2016-11-17 09:01:43 --> MindFlyer (~MindFlyer@unaffiliated/mindflyer) a rejoint #mcdevs 2016-11-17 09:04:11 Meeeh_ yup, I know this, but just wanted to point that it can be grouped when sending few packets 2016-11-17 09:30:02 <-- JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a quitté (Ping timeout: 240 seconds) 2016-11-17 10:17:42 MindFlyer ammar2, thank you very much for sharing that paper! it looks really interesting. it is ~10 years old, though... is it not outdated? 2016-11-17 11:13:19 --> UUID00 (~UUID00@BSN-210-233-141.dynamic.siol.net) a rejoint #mcdevs 2016-11-17 11:23:35 --> kev009_ (~kev009@tempe0.bbox.io) a rejoint #mcdevs 2016-11-17 11:23:35 -- Mode #mcdevs [+v kev009_] par ChanServ 2016-11-17 11:23:45 <-- kev009 (~kev009@tempe0.bbox.io) a quitté (Ping timeout: 260 seconds) 2016-11-17 11:25:43 ishitatsuyuki For stability use TCP 2016-11-17 11:25:57 ishitatsuyuki For latency use UDP 2016-11-17 11:26:14 ishitatsuyuki For ultra small unreliable (movement) packets use UDP 2016-11-17 11:29:07 rom1504 for fun with no standards, use mojang 2016-11-17 11:39:27 +Amaranth MindFlyer: Networking is networking, unless we've discovered a bypass for the speed of light 2016-11-17 11:39:38 MindFlyer ok 2016-11-17 11:41:39 +Amaranth Some of the problems mentioned with TCP's congestion/traffic algorithms have been solved or mitigated since but the problems are pretty fundamental 2016-11-17 13:25:57 ScruffyRules ammar2, [pyCraft] Why isn't client_token an option for auth_token.validate()? 2016-11-17 14:25:44 Not-ba84 [Charge] Wallbraker pushed 3 commits to master [+4/-0/±4] https://git.io/vXHo6 2016-11-17 14:25:46 Not-ba84 [Charge] Wallbraker c8ca695 - math: Add average 2016-11-17 14:25:47 Not-ba84 [Charge] Wallbraker 8c6234a - power: Display average elapsed time 2016-11-17 14:25:49 Not-ba84 [Charge] Wallbraker 70af333 - power: Add a more advanced raytracer 2016-11-17 15:15:25 <-- MindFlyer (~MindFlyer@unaffiliated/mindflyer) a quitté (Remote host closed the connection) 2016-11-17 15:15:43 --> MindFlyer (~MindFlyer@unaffiliated/mindflyer) a rejoint #mcdevs 2016-11-17 15:45:40 +ammar2 ScruffyRules: not sure! what's the use case? 2016-11-17 15:45:56 ScruffyRules I want to use the tokens that the normal client gives 2016-11-17 15:46:08 ScruffyRules so I don't have to log in everytime. 2016-11-17 15:46:40 +ammar2 ScruffyRules: can't you pass it to the constructor for AuthenticationToken 2016-11-17 15:46:47 +ammar2 https://github.com/ammaraskar/pyCraft/blob/master/minecraft/authentication.py#L52 2016-11-17 15:48:48 ScruffyRules Ah yes, thanks. 2016-11-17 15:52:06 ScruffyRules It says 403 invalid token even though it's straight from the client. 2016-11-17 15:55:44 +ammar2 not sure whats up there since the validate code literally just straight up passes the token along https://github.com/ammaraskar/pyCraft/blob/master/minecraft/authentication.py#L165-L186 2016-11-17 15:56:42 --> MomoMC (~MomoMC@modemcable181.152-177-173.mc.videotron.ca) a rejoint #mcdevs 2016-11-17 15:58:50 ScruffyRules I think the a/token was wrong 2016-11-17 15:59:33 ScruffyRules Client changed it. 2016-11-17 16:05:10 <-- ShaRose (ShaRose@i.am.sharo.se) a quitté (Quit: I appear to have left for some reason.) 2016-11-17 16:05:50 --> ShaRose (ShaRose@i.am.sharo.se) a rejoint #mcdevs 2016-11-17 16:46:05 --> Cxom (~Trinoxtio@rn-nat-129-97-131-0.dynamic.uwaterloo.ca) a rejoint #mcdevs 2016-11-17 17:25:03 --> NathanWolf (~NathanWol@107-143-24-135.lightspeed.nworla.sbcglobal.net) a rejoint #mcdevs 2016-11-17 17:53:57 <-- chibill (~chibill@2602:306:ce43:b390:dd71:aa9c:6693:858e) a quitté (Ping timeout: 256 seconds) 2016-11-17 17:58:41 --> chibill (~chibill@2602:306:ce43:b390:75c4:7e23:e4e8:d906) a rejoint #mcdevs 2016-11-17 18:55:45 --> JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a rejoint #mcdevs 2016-11-17 20:19:40 +ammar2 ScruffyRules: thanks for looking into it :) 2016-11-17 20:23:50 <-- MomoMC (~MomoMC@modemcable181.152-177-173.mc.videotron.ca) a quitté (Quit: Leaving) 2016-11-17 20:39:42 --> angrycoast (~steve@2601:187:8100:7652:3428:7b55:5374:f049) a rejoint #mcdevs 2016-11-17 20:40:58 -- wlp1s1 est maintenant connu sous le nom WLP1S1 2016-11-17 21:06:09 -- WLP1S1 est maintenant connu sous le nom wlp1s1 2016-11-17 21:23:24 <-- Byteflux (~Byteflux@ns530119.ip-149-56-107.net) a quitté (Ping timeout: 250 seconds) 2016-11-17 21:27:47 --> Byteflux (~Byteflux@ns530119.ip-149-56-107.net) a rejoint #mcdevs 2016-11-17 21:55:53 <-- MindFlyer (~MindFlyer@unaffiliated/mindflyer) a quitté (Remote host closed the connection) 2016-11-17 21:56:10 --> MindFlyer (~MindFlyer@CPEf0f249078013-CMf0f249078010.cpe.net.fido.ca) a rejoint #mcdevs 2016-11-17 21:56:23 <-- MindFlyer (~MindFlyer@CPEf0f249078013-CMf0f249078010.cpe.net.fido.ca) a quitté (Changing host) 2016-11-17 21:56:23 --> MindFlyer (~MindFlyer@unaffiliated/mindflyer) a rejoint #mcdevs 2016-11-17 22:00:09 Not-ba84 [Charge] Wallbraker pushed 1 commit to master [+0/-0/±4] https://git.io/vXQdj 2016-11-17 22:00:10 Not-ba84 [Charge] Wallbraker 18cc980 - power: Follow OpenGL spec better 2016-11-17 22:07:38 Not-ba84 [Charge] Wallbraker pushed 1 commit to master [+0/-0/±3] https://git.io/vXQFp 2016-11-17 22:07:39 Not-ba84 [Charge] Wallbraker 8fa1621 - power: Improve AdvancedSVO 2016-11-17 22:14:03 <-- vemacs|ded (~vemacs@192.3.17.176) a quitté (Ping timeout: 256 seconds) 2016-11-17 22:18:03 <-- MindFlyer (~MindFlyer@unaffiliated/mindflyer) a quitté (Remote host closed the connection) 2016-11-17 22:18:23 --> MindFlyer (~MindFlyer@CPEf0f249078013-CMf0f249078010.cpe.net.fido.ca) a rejoint #mcdevs 2016-11-17 22:18:23 <-- MindFlyer (~MindFlyer@CPEf0f249078013-CMf0f249078010.cpe.net.fido.ca) a quitté (Changing host) 2016-11-17 22:18:23 --> MindFlyer (~MindFlyer@unaffiliated/mindflyer) a rejoint #mcdevs 2016-11-17 22:26:57 --> vemacs|ded (~vemacs@192.3.17.176) a rejoint #mcdevs 2016-11-17 22:55:18 --> jnoah (~brutal_ch@osuosl/staff/brutal-chaos) a rejoint #mcdevs 2016-11-17 22:55:18 -- Mode #mcdevs [+v jnoah] par ChanServ 2016-11-17 23:47:02 <-- angrycoast (~steve@2601:187:8100:7652:3428:7b55:5374:f049) a quitté (Quit: Leaving) 2016-11-18 00:11:14 <-- ShaRose (ShaRose@i.am.sharo.se) a quitté (Ping timeout: 256 seconds) 2016-11-18 00:23:43 --> ShaRose (ShaRose@i.am.sharo.se) a rejoint #mcdevs 2016-11-18 00:49:01 --> pokechu22 (322347c6@gateway/web/freenode/ip.50.35.71.198) a rejoint #mcdevs 2016-11-18 01:08:04 <-- NathanWolf (~NathanWol@107-143-24-135.lightspeed.nworla.sbcglobal.net) a quitté (Quit: NathanWolf) 2016-11-18 01:15:02 <-- zml (~zml@minions.aoeu.xyz) a quitté (Ping timeout: 240 seconds) 2016-11-18 01:15:02 <-- kashike (kashike@unaffiliated/kashike) a quitté (Ping timeout: 240 seconds) 2016-11-18 01:15:26 --> kashike (kashike@unaffiliated/kashike) a rejoint #mcdevs 2016-11-18 01:21:13 --> zml (~zml@minions.aoeu.xyz) a rejoint #mcdevs 2016-11-18 01:44:01 --> NathanWolf (~NathanWol@104-5-237-23.lightspeed.nworla.sbcglobal.net) a rejoint #mcdevs 2016-11-18 02:38:27 <-- NathanWolf (~NathanWol@104-5-237-23.lightspeed.nworla.sbcglobal.net) a quitté (Quit: NathanWolf) 2016-11-18 02:45:00 <-- wlp1s1 (jeffl@unaffiliated/iczero) a quitté (Disconnected by services) 2016-11-18 02:48:02 <-- UUID00 (~UUID00@BSN-210-233-141.dynamic.siol.net) a quitté (Ping timeout: 248 seconds) 2016-11-18 02:48:06 --> iczero (jeffl@unaffiliated/iczero) a rejoint #mcdevs 2016-11-18 02:51:17 <-- Amaranth (~Amaranth@ubuntu/member/Amaranth) a quitté (Quit: Sleep time...) 2016-11-18 02:56:50 --> NathanWolf (~NathanWol@104-5-237-23.lightspeed.nworla.sbcglobal.net) a rejoint #mcdevs 2016-11-18 03:17:02 --> Amaranth (~Amaranth@ubuntu/member/Amaranth) a rejoint #mcdevs 2016-11-18 03:17:02 -- Mode #mcdevs [+v Amaranth] par ChanServ 2016-11-18 03:33:39 <-- JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a quitté (Ping timeout: 256 seconds) 2016-11-18 03:46:09 <-- NathanWolf (~NathanWol@104-5-237-23.lightspeed.nworla.sbcglobal.net) a quitté (Quit: NathanWolf) 2016-11-18 04:11:47 --> Pangea (~Pangea@unaffiliated/pangea) a rejoint #mcdevs 2016-11-18 04:20:52 ScruffyRules Yeah no problem ammar2 2016-11-18 05:12:26 <-- pokechu22 (322347c6@gateway/web/freenode/ip.50.35.71.198) a quitté (Ping timeout: 260 seconds) 2016-11-18 06:23:00 -- iczero est maintenant connu sous le nom wlp1s1 2016-11-18 06:33:40 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2016-11-18 06:36:50 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 248 seconds) 2016-11-18 06:36:50 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2016-11-18 07:32:50 -- wlp1s1 est maintenant connu sous le nom iczero 2016-11-18 07:37:10 -- iczero est maintenant connu sous le nom wlp1s1 2016-11-18 07:42:19 <-- ishitatsuyuki (~quassel@unaffiliated/ishitatsuyuki) a quitté (Remote host closed the connection) 2016-11-18 07:46:35 <-- wlp1s1 (jeffl@unaffiliated/iczero) a quitté (Quit: jeffl35 has quit (Quit: jeffl35 has quit (Quit: jeffl35 has quit (Quit: jeffl35 has quit ...) 2016-11-18 07:48:14 --> iczero (jeffl@unaffiliated/iczero) a rejoint #mcdevs 2016-11-18 07:48:50 --> ishitatsuyuki (~quassel@unaffiliated/ishitatsuyuki) a rejoint #mcdevs 2016-11-18 07:49:50 -- iczero est maintenant connu sous le nom wlp1s1 2016-11-18 09:37:20 <-- _123DMWM (~123DMWM@pool-108-26-253-218.bstnma.fios.verizon.net) a quitté (Ping timeout: 256 seconds) 2016-11-18 09:38:07 --> _123DMWM (~123DMWM@pool-108-26-253-218.bstnma.fios.verizon.net) a rejoint #mcdevs 2016-11-18 09:55:58 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2016-11-18 09:58:20 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 265 seconds) 2016-11-18 09:58:20 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2016-11-18 10:51:23 --> UUID00 (~UUID00@BSN-210-233-141.dynamic.siol.net) a rejoint #mcdevs 2016-11-18 11:34:34 <-- Amaranth (~Amaranth@ubuntu/member/Amaranth) a quitté (Quit: So long!) 2016-11-18 11:50:23 --> Amaranth (~Amaranth@ubuntu/member/Amaranth) a rejoint #mcdevs 2016-11-18 11:50:23 -- Mode #mcdevs [+v Amaranth] par ChanServ 2016-11-18 11:51:12 <-- Pangea (~Pangea@unaffiliated/pangea) a quitté (Ping timeout: 250 seconds) 2016-11-18 12:00:40 --> bildramer1 (~bildramer@p2003004D2B28FF00445AFB7AB69DD3D5.dip0.t-ipconnect.de) a rejoint #mcdevs 2016-11-18 12:00:47 <-- bildramer (~bildramer@p2003004D2B28FF00AC9BCCA14258DFA9.dip0.t-ipconnect.de) a quitté (Disconnected by services) 2016-11-18 12:00:50 -- bildramer1 est maintenant connu sous le nom bildramer 2016-11-18 12:33:37 --> bildramer1 (~bildramer@p2003004D2B28FF00908C45D007EBC632.dip0.t-ipconnect.de) a rejoint #mcdevs 2016-11-18 12:37:05 <-- bildramer (~bildramer@p2003004D2B28FF00445AFB7AB69DD3D5.dip0.t-ipconnect.de) a quitté (Ping timeout: 256 seconds) 2016-11-18 12:38:18 -- bildramer1 est maintenant connu sous le nom bildramer 2016-11-18 13:01:10 <-- Amaranth (~Amaranth@ubuntu/member/Amaranth) a quitté (Quit: Sleep time...) 2016-11-18 13:45:09 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Ping timeout: 252 seconds) 2016-11-18 14:43:36 Not-ba84 [Charge] Wallbraker pushed 4 commits to master [+3/-0/±9] https://git.io/vX50K 2016-11-18 14:43:37 Not-ba84 [Charge] Wallbraker dec4cfc - power: Refactor loop unrolling 2016-11-18 14:43:39 Not-ba84 [Charge] Wallbraker 767cee0 - power: Small refactor to shaders 2016-11-18 14:43:40 Not-ba84 [Charge] Wallbraker 8b41af0 - gfx: Add IndirectBuffer 2016-11-18 14:43:42 Not-ba84 [Charge] Wallbraker c326043 - power: Optimize AdvancedSVO with feedback buffer 2016-11-18 14:53:36 <-- Jailout2000 (~Jailout20@unaffiliated/jailout2000) a quitté (Ping timeout: 268 seconds) 2016-11-18 15:34:43 --> NathanWolf (~NathanWol@107-143-24-135.lightspeed.nworla.sbcglobal.net) a rejoint #mcdevs 2016-11-18 15:37:06 --> Jailout2000 (~Jailout20@unaffiliated/jailout2000) a rejoint #mcdevs 2016-11-18 16:04:54 <-- Jailout2000 (~Jailout20@unaffiliated/jailout2000) a quitté (Ping timeout: 260 seconds) 2016-11-18 16:06:16 <-- MindFlyer (~MindFlyer@unaffiliated/mindflyer) a quitté (Remote host closed the connection) 2016-11-18 16:06:36 --> MindFlyer (~MindFlyer@CPEf0f249078013-CMf0f249078010.cpe.net.fido.ca) a rejoint #mcdevs 2016-11-18 16:06:36 <-- MindFlyer (~MindFlyer@CPEf0f249078013-CMf0f249078010.cpe.net.fido.ca) a quitté (Changing host) 2016-11-18 16:06:36 --> MindFlyer (~MindFlyer@unaffiliated/mindflyer) a rejoint #mcdevs 2016-11-18 16:08:25 <-- MindFlyer (~MindFlyer@unaffiliated/mindflyer) a quitté (Remote host closed the connection) 2016-11-18 16:08:46 --> MindFlyer (~MindFlyer@unaffiliated/mindflyer) a rejoint #mcdevs 2016-11-18 16:25:43 <-- Extreme (extreme7@gateway/shell/xshellz/x-tdtfxaxaohcszsol) a quitté (Ping timeout: 260 seconds) 2016-11-18 16:31:26 --> Extreme (extreme7@gateway/shell/xshellz/x-acxuedcvaviryevq) a rejoint #mcdevs 2016-11-18 16:46:09 --> Amaranth (~Amaranth@ubuntu/member/Amaranth) a rejoint #mcdevs 2016-11-18 16:46:09 -- Mode #mcdevs [+v Amaranth] par ChanServ 2016-11-18 17:12:13 --> Jailout2000 (~Jailout20@unaffiliated/jailout2000) a rejoint #mcdevs 2016-11-18 17:39:07 <-- wlp1s1 (jeffl@unaffiliated/iczero) a quitté (Quit: jeffl35 has quit (Quit: jeffl35 has quit (Quit: jeffl35 has quit (Quit: jeffl35 has quit ...) 2016-11-18 17:39:49 --> iczero (jeffl@unaffiliated/iczero) a rejoint #mcdevs 2016-11-18 17:50:33 <-- AlphaBlend (AlphaBlend@cpe-172-250-134-111.socal.res.rr.com) a quitté (Ping timeout: 265 seconds) 2016-11-18 18:04:14 <-- Amaranth (~Amaranth@ubuntu/member/Amaranth) a quitté (Quit: Sleep time...) 2016-11-18 18:08:52 --> Amaranth (~Amaranth@ubuntu/member/Amaranth) a rejoint #mcdevs 2016-11-18 18:08:52 -- Mode #mcdevs [+v Amaranth] par ChanServ 2016-11-18 18:26:29 --> AlphaBlend (AlphaBlend@cpe-172-250-134-111.socal.res.rr.com) a rejoint #mcdevs 2016-11-18 18:28:12 <-- Amaranth (~Amaranth@ubuntu/member/Amaranth) a quitté (Quit: Sleep time...) 2016-11-18 18:43:05 --> Vector (~AlphaBlen@cpe-172-250-134-111.socal.res.rr.com) a rejoint #mcdevs 2016-11-18 18:44:44 <-- AlphaBlend (AlphaBlend@cpe-172-250-134-111.socal.res.rr.com) a quitté (Ping timeout: 256 seconds) 2016-11-18 18:47:55 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2016-11-18 19:42:06 --> Tachyon_ (~Thunderbi@95.76.184.120) a rejoint #mcdevs 2016-11-18 20:19:46 <-- NathanWolf (~NathanWol@107-143-24-135.lightspeed.nworla.sbcglobal.net) a quitté (Ping timeout: 248 seconds) 2016-11-18 21:27:00 <-- MindFlyer (~MindFlyer@unaffiliated/mindflyer) a quitté (Read error: Connection reset by peer) 2016-11-18 21:33:20 <-- Tachyon_ (~Thunderbi@95.76.184.120) a quitté (Quit: Tachyon_) 2016-11-18 22:35:36 <-- ferrybig (~ferrybig@2a03:b0c0:0:1010::20:c001) a quitté (Quit: Goodbye) 2016-11-18 23:57:57 --> pokechu22 (322347c6@gateway/web/freenode/ip.50.35.71.198) a rejoint #mcdevs 2016-11-18 23:58:24 <-- Voltasalt_ (~Voltasalt@5.101.100.240) a quitté (Quit: Connection reset by beer) 2016-11-18 23:58:58 <-- Extreme (extreme7@gateway/shell/xshellz/x-acxuedcvaviryevq) a quitté (Ping timeout: 248 seconds) 2016-11-18 23:59:16 --> Voltasalt (~Voltasalt@5.101.100.240) a rejoint #mcdevs 2016-11-19 00:01:22 --> Extreme (extreme7@gateway/shell/xshellz/x-whddnebovdllphfe) a rejoint #mcdevs 2016-11-19 00:05:13 <-- realz (~realz@unaffiliated/realazthat) a quitté (Ping timeout: 258 seconds) 2016-11-19 00:19:44 --> realz (~realz@unaffiliated/realazthat) a rejoint #mcdevs 2016-11-19 01:15:13 --> JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a rejoint #mcdevs 2016-11-19 01:16:26 --> Pangea (~Pangea@unaffiliated/pangea) a rejoint #mcdevs 2016-11-19 01:43:48 <-- electronicboy (~electroni@atlas.valaria.pw) a quitté (Quit: You're not just a regular moron. You were designed to be a moron.) 2016-11-19 05:18:21 ecx86 Aw fuck 1.11 is out. 2016-11-19 05:30:10 <-- Pangea (~Pangea@unaffiliated/pangea) a quitté (Read error: Connection reset by peer) 2016-11-19 05:40:42 <-- UUID00 (~UUID00@BSN-210-233-141.dynamic.siol.net) a quitté (Ping timeout: 240 seconds) 2016-11-19 06:43:05 --> redstonehelper_ (~redstoneh@p579523BE.dip0.t-ipconnect.de) a rejoint #mcdevs 2016-11-19 06:43:05 <-- redstonehelper_ (~redstoneh@p579523BE.dip0.t-ipconnect.de) a quitté (Changing host) 2016-11-19 06:43:05 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2016-11-19 06:46:14 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 245 seconds) 2016-11-19 06:46:14 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2016-11-19 07:11:41 <-- pokechu22 (322347c6@gateway/web/freenode/ip.50.35.71.198) a quitté (Ping timeout: 260 seconds) 2016-11-19 07:34:22 -- fragmer_ est maintenant connu sous le nom fragmer 2016-11-19 07:34:22 -- Mode #mcdevs [+v fragmer] par ChanServ 2016-11-19 09:00:50 <-- JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a quitté (Ping timeout: 260 seconds) 2016-11-19 09:50:27 <-- Cxom (~Trinoxtio@rn-nat-129-97-131-0.dynamic.uwaterloo.ca) a quitté (Ping timeout: 265 seconds) 2016-11-19 09:59:42 --> zix (uid195779@gateway/web/irccloud.com/x-tzrgyystfrkjuucv) a rejoint #mcdevs 2016-11-19 11:01:36 MiniDigger lel 2016-11-19 11:40:04 <-- samschaap (~samschaap@5469BF1F.cm-12-2c.dynamic.ziggo.nl) a quitté (Ping timeout: 250 seconds) 2016-11-19 11:47:18 --> samschaap (~samschaap@5469BF1F.cm-12-2c.dynamic.ziggo.nl) a rejoint #mcdevs 2016-11-19 11:53:42 <-- samschaap (~samschaap@5469BF1F.cm-12-2c.dynamic.ziggo.nl) a quitté (Ping timeout: 265 seconds) 2016-11-19 12:06:37 <-- zix (uid195779@gateway/web/irccloud.com/x-tzrgyystfrkjuucv) a quitté (Quit: Connection closed for inactivity) 2016-11-19 12:20:45 --> samschaap (~samschaap@5469BF1F.cm-12-2c.dynamic.ziggo.nl) a rejoint #mcdevs 2016-11-19 12:25:11 +Prf_Jakob bernardh: /win 21 2016-11-19 12:25:14 +Prf_Jakob Ops 2016-11-19 12:30:25 <-- samschaap (~samschaap@5469BF1F.cm-12-2c.dynamic.ziggo.nl) a quitté (Ping timeout: 258 seconds) 2016-11-19 12:35:42 --> samschaap (~samschaap@5469BF1F.cm-12-2c.dynamic.ziggo.nl) a rejoint #mcdevs 2016-11-19 12:40:57 <-- samschaap (~samschaap@5469BF1F.cm-12-2c.dynamic.ziggo.nl) a quitté (Ping timeout: 256 seconds) 2016-11-19 12:56:26 --> UUID00 (~UUID00@BSN-210-233-141.dynamic.siol.net) a rejoint #mcdevs 2016-11-19 12:59:01 <-- Extreme (extreme7@gateway/shell/xshellz/x-whddnebovdllphfe) a quitté (Ping timeout: 244 seconds) 2016-11-19 13:04:19 --> Extreme (extreme7@gateway/shell/xshellz/x-nesoxyfunghyvtjc) a rejoint #mcdevs 2016-11-19 14:04:51 <-- Extreme (extreme7@gateway/shell/xshellz/x-nesoxyfunghyvtjc) a quitté (Ping timeout: 248 seconds) 2016-11-19 14:11:01 --> Extreme (extreme7@gateway/shell/xshellz/x-cekjeuufgswohoox) a rejoint #mcdevs 2016-11-19 14:20:05 --> samschaap (~samschaap@5469BF1F.cm-12-2c.dynamic.ziggo.nl) a rejoint #mcdevs 2016-11-19 15:18:19 <-- Akaibu (uid118096@gateway/web/irccloud.com/x-kmrjzrahdiyshtbi) a quitté (Ping timeout: 258 seconds) 2016-11-19 15:21:42 --> Akaibu (uid118096@gateway/web/irccloud.com/x-nhlgkzasabjofgep) a rejoint #mcdevs 2016-11-19 17:20:16 --> Amaranth (~Amaranth@ubuntu/member/Amaranth) a rejoint #mcdevs 2016-11-19 17:20:16 -- Mode #mcdevs [+v Amaranth] par ChanServ 2016-11-19 17:33:59 --> pokechu22 (322347c6@gateway/web/freenode/ip.50.35.71.198) a rejoint #mcdevs 2016-11-19 17:39:57 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Disconnected by services) 2016-11-19 17:39:57 --> gurun_ (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2016-11-19 17:49:21 <-- Prf_Jakob (jakob@void-network.org) a quitté (Changing host) 2016-11-19 17:49:22 --> Prf_Jakob (jakob@volt/developer/jakob) a rejoint #mcdevs 2016-11-19 17:49:22 -- Mode #mcdevs [+v Prf_Jakob] par verne.freenode.net 2016-11-19 17:49:22 <-- dav1d (~dav1d@unaffiliated/dav1d) a quitté (Changing host) 2016-11-19 17:49:22 --> dav1d (~dav1d@volt/developer/dav1d) a rejoint #mcdevs 2016-11-19 17:51:52 <-- Prf_Jakob (jakob@volt/developer/jakob) a quitté (Quit: Spoon!) 2016-11-19 17:52:13 --> Prf_Jakob (jakob@void-network.org) a rejoint #mcdevs 2016-11-19 17:52:25 <-- Prf_Jakob (jakob@void-network.org) a quitté (Changing host) 2016-11-19 17:52:25 --> Prf_Jakob (jakob@volt/developer/jakob) a rejoint #mcdevs 2016-11-19 17:52:25 -- Mode #mcdevs [+v Prf_Jakob] par ChanServ 2016-11-19 17:59:46 <-- dav1d (~dav1d@volt/developer/dav1d) a quitté (Quit: nothing to see) 2016-11-19 18:00:09 --> dav1d (~dav1d@volt/developer/dav1d) a rejoint #mcdevs 2016-11-19 18:09:58 --> Cxom (~Trinoxtio@rn-nat-129-97-131-0.dynamic.uwaterloo.ca) a rejoint #mcdevs 2016-11-19 18:11:05 <-- gurun_ (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Quit: Leaving) 2016-11-19 18:11:17 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2016-11-19 18:58:50 -- iczero est maintenant connu sous le nom wlp1s1 2016-11-19 19:18:58 ecx86 ok done updating everything 2016-11-19 19:38:39 --> JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a rejoint #mcdevs 2016-11-19 21:16:36 --> |Blaze|_ (~scott@184.70.189.74) a rejoint #mcdevs 2016-11-19 21:16:56 <-- |Blaze| (~scott@184.70.189.74) a quitté (Read error: Connection reset by peer) 2016-11-19 21:21:36 --> progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a rejoint #mcdevs 2016-11-19 23:32:57 --> electronicboy (~electroni@atlas.valaria.pw) a rejoint #mcdevs 2016-11-19 23:40:08 --> Amaranthus (~Amaranth@ubuntu/member/Amaranth) a rejoint #mcdevs 2016-11-19 23:40:08 -- Mode #mcdevs [+v Amaranthus] par ChanServ 2016-11-19 23:41:54 <-- Amaranth (~Amaranth@ubuntu/member/Amaranth) a quitté (Ping timeout: 260 seconds) 2016-11-19 23:54:26 <-- pokechu22 (322347c6@gateway/web/freenode/ip.50.35.71.198) a quitté (Ping timeout: 260 seconds) 2016-11-20 00:46:36 --> pokechu22 (322347c6@gateway/web/freenode/ip.50.35.71.198) a rejoint #mcdevs 2016-11-20 01:17:29 --> pokechu22_ (322347c6@gateway/web/freenode/ip.50.35.71.198) a rejoint #mcdevs 2016-11-20 01:19:01 <-- pokechu22 (322347c6@gateway/web/freenode/ip.50.35.71.198) a quitté (Ping timeout: 260 seconds) 2016-11-20 01:20:25 -- pokechu22_ est maintenant connu sous le nom pokechu22 2016-11-20 01:59:12 <-- begin_end (admin@ho.by) a quitté (Read error: Connection reset by peer) 2016-11-20 02:05:26 --> begin_end (admin@ho.by) a rejoint #mcdevs 2016-11-20 02:25:53 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Disconnected by services) 2016-11-20 02:25:53 --> gurun_ (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2016-11-20 03:33:42 <-- Protocol_7 (~Protocol_@togame.ipwnage.com) a quitté (Quit: Adios) 2016-11-20 03:34:12 --> Protocol_7 (~Protocol_@togame.ipwnage.com) a rejoint #mcdevs 2016-11-20 03:46:55 <-- Amaranthus (~Amaranth@ubuntu/member/Amaranth) a quitté (Quit: Sleep time...) 2016-11-20 04:02:03 --> Amaranth (~Amaranth@ubuntu/member/Amaranth) a rejoint #mcdevs 2016-11-20 04:02:03 -- Mode #mcdevs [+v Amaranth] par ChanServ 2016-11-20 04:20:40 --> Jailout20001 (~Jailout20@unaffiliated/jailout2000) a rejoint #mcdevs 2016-11-20 04:21:58 <-- Jailout2000 (~Jailout20@unaffiliated/jailout2000) a quitté (Ping timeout: 268 seconds) 2016-11-20 04:24:31 <-- pokechu22 (322347c6@gateway/web/freenode/ip.50.35.71.198) a quitté (Ping timeout: 260 seconds) 2016-11-20 04:28:13 --> pokechu22 (322347c6@gateway/web/freenode/ip.50.35.71.198) a rejoint #mcdevs 2016-11-20 05:10:26 <-- progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-11-20 05:24:43 --> progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a rejoint #mcdevs 2016-11-20 06:02:16 <-- KHobbits (khf@2600:3c03::21:1210) a quitté (Remote host closed the connection) 2016-11-20 06:02:41 <-- x56 (0x56@unaffiliated/x56) a quitté (Quit: Ծ-Ծ) 2016-11-20 06:21:06 <-- Jailout20001 (~Jailout20@unaffiliated/jailout2000) a quitté (Read error: Connection reset by peer) 2016-11-20 06:23:26 --> Jailout2000 (~Jailout20@unaffiliated/jailout2000) a rejoint #mcdevs 2016-11-20 06:39:57 --> KHobbits (khf@2600:3c03::21:1210) a rejoint #mcdevs 2016-11-20 06:42:11 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2016-11-20 06:45:39 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 268 seconds) 2016-11-20 06:45:39 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2016-11-20 06:51:42 <-- UUID00 (~UUID00@BSN-210-233-141.dynamic.siol.net) a quitté (Ping timeout: 250 seconds) 2016-11-20 07:22:02 <-- progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-11-20 08:57:35 <-- KnownUnown (KnownUnown@die.in.firrre.com) a quitté (Ping timeout: 256 seconds) 2016-11-20 09:50:01 <-- pokechu22 (322347c6@gateway/web/freenode/ip.50.35.71.198) a quitté (Ping timeout: 260 seconds) 2016-11-20 11:31:54 <-- gurun_ (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Quit: Leaving) 2016-11-20 11:32:08 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2016-11-20 11:50:25 <-- JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a quitté (Ping timeout: 256 seconds) 2016-11-20 11:51:12 --> Jailout20001 (~Jailout20@unaffiliated/jailout2000) a rejoint #mcdevs 2016-11-20 11:53:10 <-- Jailout2000 (~Jailout20@unaffiliated/jailout2000) a quitté (Ping timeout: 260 seconds) 2016-11-20 12:09:57 <-- Amaranth (~Amaranth@ubuntu/member/Amaranth) a quitté (Quit: Sleep time...) 2016-11-20 12:38:58 --> UUID00 (~UUID00@BSN-210-233-141.dynamic.siol.net) a rejoint #mcdevs 2016-11-20 13:24:15 --> UUID01 (~UUID00@BSN-210-233-141.dynamic.siol.net) a rejoint #mcdevs 2016-11-20 13:27:02 <-- UUID00 (~UUID00@BSN-210-233-141.dynamic.siol.net) a quitté (Ping timeout: 240 seconds) 2016-11-20 14:22:22 --> ledeadm (~Kitteh@162.243.251.6) a rejoint #mcdevs 2016-11-20 14:28:42 <-- ledeadm (~Kitteh@162.243.251.6) a quitté (Remote host closed the connection) 2016-11-20 15:29:30 --> KnownUnown (KnownUnown@die.in.firrre.com) a rejoint #mcdevs 2016-11-20 15:45:46 --> Amaranth (~Amaranth@ubuntu/member/Amaranth) a rejoint #mcdevs 2016-11-20 15:45:46 -- Mode #mcdevs [+v Amaranth] par ChanServ 2016-11-20 16:16:14 --> progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a rejoint #mcdevs 2016-11-20 17:08:41 <-- fortytwo (~thomas@205.185.117.105) a quitté (Ping timeout: 265 seconds) 2016-11-20 17:10:57 --> fortytwo (~thomas@who.let.this.bloody.dropbear.in) a rejoint #mcdevs 2016-11-20 19:22:12 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Disconnected by services) 2016-11-20 19:22:12 --> gurun_ (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2016-11-20 20:08:34 --> pokechu22 (322347c6@gateway/web/freenode/ip.50.35.71.198) a rejoint #mcdevs 2016-11-20 20:14:52 <-- gurun_ (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Quit: Leaving) 2016-11-20 20:15:10 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2016-11-20 20:49:44 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Disconnected by services) 2016-11-20 20:49:44 --> gurun_ (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2016-11-20 21:05:01 --> kamcio96 (~kamcio96@host-81-190-232-89.dynamic.mm.pl) a rejoint #mcdevs 2016-11-20 21:32:30 --> JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a rejoint #mcdevs 2016-11-20 21:38:34 <-- kamcio96 (~kamcio96@host-81-190-232-89.dynamic.mm.pl) a quitté (Quit: Leaving) 2016-11-20 21:42:41 <-- progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-11-20 21:43:34 --> progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a rejoint #mcdevs 2016-11-20 22:07:58 <-- _123DMWM (~123DMWM@pool-108-26-253-218.bstnma.fios.verizon.net) a quitté (Read error: Connection reset by peer) 2016-11-20 22:10:05 --> _123DMWM (~123DMWM@pool-108-26-253-218.bstnma.fios.verizon.net) a rejoint #mcdevs 2016-11-20 22:12:21 <-- _123DMWM (~123DMWM@pool-108-26-253-218.bstnma.fios.verizon.net) a quitté (Read error: Connection reset by peer) 2016-11-20 22:13:56 --> _123DMWM (~123DMWM@pool-108-26-253-218.bstnma.fios.verizon.net) a rejoint #mcdevs 2016-11-20 22:39:19 Not-ba84 [Charge] Wallbraker pushed 2 commits to master [+12/-6/±3] https://git.io/vXbjf 2016-11-20 22:39:21 Not-ba84 [Charge] Wallbraker 0b2d208 - power: Remove dead code 2016-11-20 22:39:22 Not-ba84 [Charge] Wallbraker f79e7a7 - power: Improve AdvancedSVO 2016-11-20 23:03:08 --> pokechu22_ (322347c6@gateway/web/freenode/ip.50.35.71.198) a rejoint #mcdevs 2016-11-20 23:05:41 <-- pokechu22 (322347c6@gateway/web/freenode/ip.50.35.71.198) a quitté (Ping timeout: 260 seconds) 2016-11-20 23:06:12 -- pokechu22_ est maintenant connu sous le nom pokechu22 2016-11-20 23:15:48 --> Pangea (~Pangea@unaffiliated/pangea) a rejoint #mcdevs 2016-11-20 23:23:44 <-- Amaranth (~Amaranth@ubuntu/member/Amaranth) a quitté (Quit: Sleep time...) 2016-11-20 23:49:02 <-- JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a quitté (Ping timeout: 260 seconds) 2016-11-21 00:00:49 --> Amaranth (~Amaranth@ubuntu/member/Amaranth) a rejoint #mcdevs 2016-11-21 00:01:08 -- Mode #mcdevs [+v Amaranth] par ChanServ 2016-11-21 00:01:31 --> JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a rejoint #mcdevs 2016-11-21 00:31:39 <-- JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a quitté (Ping timeout: 245 seconds) 2016-11-21 00:53:58 --> JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a rejoint #mcdevs 2016-11-21 01:07:09 <-- progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-11-21 01:11:36 <-- jamierocks (~jamierock@lon1.lexteam.xyz) a quitté (Quit: Adios) 2016-11-21 01:18:22 <-- Deaygo (~Deaygo@107.161.31.15) a quitté (Ping timeout: 256 seconds) 2016-11-21 01:19:42 --> Deaygo (~Deaygo@107.161.31.15) a rejoint #mcdevs 2016-11-21 01:29:34 --> progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a rejoint #mcdevs 2016-11-21 01:31:31 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2016-11-21 01:33:06 <-- gurun_ (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Ping timeout: 256 seconds) 2016-11-21 01:34:13 <-- |Blaze|_ (~scott@184.70.189.74) a quitté (Read error: Connection reset by peer) 2016-11-21 01:34:26 --> |Blaze| (~scott@184.70.189.74) a rejoint #mcdevs 2016-11-21 01:38:12 <-- Deaygo (~Deaygo@107.161.31.15) a quitté (Ping timeout: 256 seconds) 2016-11-21 01:41:16 --> Deaygo (~Deaygo@107.161.31.15) a rejoint #mcdevs 2016-11-21 02:08:48 <-- Deaygo (~Deaygo@107.161.31.15) a quitté (Ping timeout: 256 seconds) 2016-11-21 02:09:51 --> Deaygo (~Deaygo@107.161.31.15) a rejoint #mcdevs 2016-11-21 02:31:43 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Disconnected by services) 2016-11-21 02:31:43 --> gurun_ (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2016-11-21 02:38:03 <-- UUID01 (~UUID00@BSN-210-233-141.dynamic.siol.net) a quitté (Ping timeout: 240 seconds) 2016-11-21 02:40:30 --> UUID01 (~UUID00@BSN-210-233-141.dynamic.siol.net) a rejoint #mcdevs 2016-11-21 03:00:08 <-- UUID01 (~UUID00@BSN-210-233-141.dynamic.siol.net) a quitté (Read error: Connection reset by peer) 2016-11-21 03:12:50 <-- Deaygo (~Deaygo@107.161.31.15) a quitté (Ping timeout: 256 seconds) 2016-11-21 03:12:57 --> Deaygo (~Deaygo@107.161.31.15) a rejoint #mcdevs 2016-11-21 04:14:48 <-- Adam (Adam@unaffiliated/adam-) a quitté (Ping timeout: 250 seconds) 2016-11-21 04:15:35 --> Adam (Adam@unaffiliated/adam-) a rejoint #mcdevs 2016-11-21 04:29:19 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2016-11-21 04:32:44 <-- gurun_ (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Ping timeout: 256 seconds) 2016-11-21 06:41:16 <-- pokechu22 (322347c6@gateway/web/freenode/ip.50.35.71.198) a quitté (Ping timeout: 260 seconds) 2016-11-21 06:41:18 --> redstonehelper_ (~redstoneh@p4FCCFD2F.dip0.t-ipconnect.de) a rejoint #mcdevs 2016-11-21 06:41:23 <-- redstonehelper_ (~redstoneh@p4FCCFD2F.dip0.t-ipconnect.de) a quitté (Changing host) 2016-11-21 06:41:23 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2016-11-21 06:44:28 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 250 seconds) 2016-11-21 06:44:28 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2016-11-21 07:36:16 <-- Cxom (~Trinoxtio@rn-nat-129-97-131-0.dynamic.uwaterloo.ca) a quitté (Ping timeout: 265 seconds) 2016-11-21 07:37:14 <-- ShaRose (ShaRose@i.am.sharo.se) a quitté (Ping timeout: 265 seconds) 2016-11-21 07:48:51 --> ShaRose (ShaRose@i.am.sharo.se) a rejoint #mcdevs 2016-11-21 07:53:53 <-- ishitatsuyuki (~quassel@unaffiliated/ishitatsuyuki) a quitté (Quit: http://quassel-irc.org - Chat comfortably. Anywhere.) 2016-11-21 07:54:03 --> ishitatsuyuki (~quassel@unaffiliated/ishitatsuyuki) a rejoint #mcdevs 2016-11-21 08:29:43 <-- KnownUnown (KnownUnown@die.in.firrre.com) a quitté (Ping timeout: 256 seconds) 2016-11-21 09:05:18 <-- JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a quitté (Ping timeout: 260 seconds) 2016-11-21 09:48:27 <-- Jailout20001 (~Jailout20@unaffiliated/jailout2000) a quitté (Read error: Connection reset by peer) 2016-11-21 09:50:41 --> Jailout2000 (~Jailout20@unaffiliated/jailout2000) a rejoint #mcdevs 2016-11-21 09:58:59 <-- Pangea (~Pangea@unaffiliated/pangea) a quitté (Ping timeout: 258 seconds) 2016-11-21 10:24:06 --> Jailout20001 (~Jailout20@unaffiliated/jailout2000) a rejoint #mcdevs 2016-11-21 10:25:39 <-- Jailout2000 (~Jailout20@unaffiliated/jailout2000) a quitté (Ping timeout: 248 seconds) 2016-11-21 10:34:46 <-- progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a quitté (Ping timeout: 244 seconds) 2016-11-21 11:38:13 Not-ba84 [flying-squid] rom1504 pushed 2 commits to master [+0/-0/±2] https://git.io/vXNDv 2016-11-21 11:38:15 Not-ba84 [flying-squid] DeudlyYT 5a7bcb9 - Added my plugin 2016-11-21 11:38:16 Not-ba84 [flying-squid] rom1504 7970461 - Merge pull request #281 from DeudlyYT/master Added my plugin to the README 2016-11-21 12:16:44 --> Dadido3_ (~quassel@p5B00B629.dip0.t-ipconnect.de) a rejoint #mcdevs 2016-11-21 12:18:52 <-- Dadido3 (~quassel@p2003007A8B262900C92C4BF4398B22B5.dip0.t-ipconnect.de) a quitté (Ping timeout: 240 seconds) 2016-11-21 12:42:37 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Disconnected by services) 2016-11-21 12:42:37 --> gurun_ (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2016-11-21 13:10:12 --> progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a rejoint #mcdevs 2016-11-21 14:29:01 <-- progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-11-21 14:57:28 --> progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a rejoint #mcdevs 2016-11-21 14:57:52 --> Cxom (~Trinoxtio@rn-nat-129-97-131-0.dynamic.uwaterloo.ca) a rejoint #mcdevs 2016-11-21 15:25:23 <-- progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-11-21 15:30:11 --> progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a rejoint #mcdevs 2016-11-21 16:39:47 <-- progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-11-21 16:54:35 --> jamierocks (~jamierock@lon1.lexteam.xyz) a rejoint #mcdevs 2016-11-21 16:56:55 --> progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a rejoint #mcdevs 2016-11-21 17:06:42 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2016-11-21 17:06:58 <-- gurun_ (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Ping timeout: 256 seconds) 2016-11-21 17:09:23 <-- samschaap (~samschaap@5469BF1F.cm-12-2c.dynamic.ziggo.nl) a quitté (Ping timeout: 240 seconds) 2016-11-21 17:16:41 --> samschaap (~samschaap@5469BF1F.cm-12-2c.dynamic.ziggo.nl) a rejoint #mcdevs 2016-11-21 17:53:06 <-- dexter0 (~dexter0@2601:647:4502:8c00:6dcc:9b87:e53e:123d) a quitté (Ping timeout: 260 seconds) 2016-11-21 17:55:14 --> dexter0 (~dexter0@2601:647:4502:8c00:1a7:b052:2b02:ee24) a rejoint #mcdevs 2016-11-21 18:34:47 Not-ba84 [Charge] Wallbraker pushed 2 commits to master [+0/-2/±4] https://git.io/vXAoS 2016-11-21 18:34:49 Not-ba84 [Charge] Wallbraker 1a8aaa7 - gfx: Refactor OpenGL 3.3+ shader creation 2016-11-21 18:34:50 Not-ba84 [Charge] Wallbraker 0fd3a83 - power: Don't supply fragment shaders to feedback shaders 2016-11-21 19:36:15 --> KnownUnown (KnownUnown@die.in.firrre.com) a rejoint #mcdevs 2016-11-21 19:42:12 <-- progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-11-21 19:46:40 Not-ba84 [Charge] Wallbraker pushed 1 commit to master [+0/-0/±1] https://git.io/vXAQG 2016-11-21 19:46:42 Not-ba84 [Charge] Wallbraker 1a01a1b - power: Fixes trace geom shader 2016-11-21 19:54:23 --> progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a rejoint #mcdevs 2016-11-21 20:16:28 <-- progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-11-21 20:32:23 --> progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a rejoint #mcdevs 2016-11-21 20:44:00 --> JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a rejoint #mcdevs 2016-11-21 20:46:56 Not-ba84 [flying-squid] rom1504 deleted branch greenkeeper-gulp-sourcemaps-2.2.1 2016-11-21 21:07:29 <-- KnownUnown (KnownUnown@die.in.firrre.com) a quitté (Ping timeout: 245 seconds) 2016-11-21 21:25:53 --> KnownUnown (KnownUnown@die.in.firrre.com) a rejoint #mcdevs 2016-11-21 21:41:32 <-- samschaap (~samschaap@5469BF1F.cm-12-2c.dynamic.ziggo.nl) a quitté (Ping timeout: 252 seconds) 2016-11-21 21:47:44 --> samschaap (~samschaap@5469BF1F.cm-12-2c.dynamic.ziggo.nl) a rejoint #mcdevs 2016-11-21 22:33:00 <-- KnownUnown (KnownUnown@die.in.firrre.com) a quitté (Ping timeout: 258 seconds) 2016-11-21 23:23:33 --> KnownUnown (KnownUnown@die.in.firrre.com) a rejoint #mcdevs 2016-11-21 23:54:36 gurun Here, have some porn: https://twitter.com/NiclasOlofsson/status/800830371591962630 2016-11-22 00:35:33 --> Pangea (~Pangea@unaffiliated/pangea) a rejoint #mcdevs 2016-11-22 00:43:21 --> pokechu22 (322347c6@gateway/web/freenode/ip.50.35.71.198) a rejoint #mcdevs 2016-11-22 01:03:03 --> pokechu22_ (322347c6@gateway/web/freenode/ip.50.35.71.198) a rejoint #mcdevs 2016-11-22 01:04:22 <-- pokechu22 (322347c6@gateway/web/freenode/ip.50.35.71.198) a quitté (Ping timeout: 260 seconds) 2016-11-22 01:28:57 <-- Pangea (~Pangea@unaffiliated/pangea) a quitté (Ping timeout: 258 seconds) 2016-11-22 01:36:58 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Ping timeout: 256 seconds) 2016-11-22 01:56:14 Not-ba84 [Charge] Wallbraker pushed 7 commits to master [+1/-6/±6] https://git.io/vXxQJ 2016-11-22 01:56:16 Not-ba84 [Charge] Wallbraker eb9837b - power: Change shader names 2016-11-22 01:56:17 Not-ba84 [Charge] Wallbraker 663ff90 - power: Use OpenGL 4.5 function 2016-11-22 01:56:19 Not-ba84 [Charge] Wallbraker e0fd438 - power: Better buffer names 2016-11-22 01:56:20 Not-ba84 [Charge] ... and 4 more commits. 2016-11-22 02:12:38 --> pokechu22 (322347c6@gateway/web/freenode/ip.50.35.71.198) a rejoint #mcdevs 2016-11-22 02:15:32 <-- pokechu22_ (322347c6@gateway/web/freenode/ip.50.35.71.198) a quitté (Ping timeout: 260 seconds) 2016-11-22 02:20:31 --> pokechu22_ (322347c6@gateway/web/freenode/ip.50.35.71.198) a rejoint #mcdevs 2016-11-22 02:24:07 --> Pangea (~Pangea@unaffiliated/pangea) a rejoint #mcdevs 2016-11-22 02:24:17 <-- pokechu22 (322347c6@gateway/web/freenode/ip.50.35.71.198) a quitté (Ping timeout: 260 seconds) 2016-11-22 02:51:04 <-- Black-Hole (~BlackHole@p2003007E4F76EF00A0DC3CCBDA396561.dip0.t-ipconnect.de) a quitté (Read error: Connection reset by peer) 2016-11-22 02:56:42 --> BlackHole (~BlackHole@p2003007E4F76EF00A8217994E614788D.dip0.t-ipconnect.de) a rejoint #mcdevs 2016-11-22 02:57:06 -- BlackHole est maintenant connu sous le nom Guest88979 2016-11-22 04:35:49 <-- GunfighterJ (~gunfighte@2607:5300:60:34b:d::43) a quitté (Ping timeout: 245 seconds) 2016-11-22 04:35:49 <-- LaxWasHere (~Lax@2607:5300:60:48d7::) a quitté (Ping timeout: 245 seconds) 2016-11-22 04:37:54 <-- Andrio (Andrio@gateway/shell/yourbnc/x-oiiykmzzogolisum) a quitté (Ping timeout: 245 seconds) 2016-11-22 04:39:26 --> GunfighterJ (~gunfighte@2607:5300:60:34b:d::43) a rejoint #mcdevs 2016-11-22 04:39:46 --> LaxWasHere (~Lax@deathtopennies.org) a rejoint #mcdevs 2016-11-22 04:39:53 --> Andrio (Andrio@gateway/shell/yourbnc/x-qzminopuidynjfym) a rejoint #mcdevs 2016-11-22 05:15:42 <-- _123DMWM (~123DMWM@pool-108-26-253-218.bstnma.fios.verizon.net) a quitté (Read error: Connection reset by peer) 2016-11-22 05:26:52 --> zix (uid195779@gateway/web/irccloud.com/x-jfxzhzoossklrueg) a rejoint #mcdevs 2016-11-22 06:28:41 --> _123DMWM (~123DMWM@pool-108-26-253-218.bstnma.fios.verizon.net) a rejoint #mcdevs 2016-11-22 06:39:12 <-- pokechu22_ (322347c6@gateway/web/freenode/ip.50.35.71.198) a quitté (Ping timeout: 260 seconds) 2016-11-22 06:39:26 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2016-11-22 06:42:55 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 260 seconds) 2016-11-22 06:42:55 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2016-11-22 07:56:40 <-- zix (uid195779@gateway/web/irccloud.com/x-jfxzhzoossklrueg) a quitté (Quit: Connection closed for inactivity) 2016-11-22 08:43:56 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2016-11-22 09:20:08 --> Pangea_ (~Pangea@unaffiliated/pangea) a rejoint #mcdevs 2016-11-22 09:23:31 <-- Pangea (~Pangea@unaffiliated/pangea) a quitté (Ping timeout: 258 seconds) 2016-11-22 09:28:53 <-- Pangea_ (~Pangea@unaffiliated/pangea) a quitté (Ping timeout: 258 seconds) 2016-11-22 11:09:07 <-- JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a quitté (Ping timeout: 260 seconds) 2016-11-22 11:39:27 Not-ba84 [Charge] Wallbraker pushed 2 commits to master [+1/-0/±4] https://git.io/vXpVs 2016-11-22 11:39:28 Not-ba84 [Charge] Wallbraker fcba968 - gfx: Add timer module 2016-11-22 11:39:30 Not-ba84 [Charge] Wallbraker 033245a - power: Rework timings sampling 2016-11-22 11:56:46 Not-ba84 [Charge] Wallbraker pushed 1 commit to master [+0/-0/±1] https://git.io/vXpru 2016-11-22 11:56:48 Not-ba84 [Charge] Wallbraker b037303 - power: Hack the text to be more readable 2016-11-22 14:07:01 <-- progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-11-22 14:58:58 Not-ba84 [flying-squid] rom1504 deleted branch greenkeeper-moment-2.17.0 2016-11-22 15:53:17 --> progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a rejoint #mcdevs 2016-11-22 16:08:39 <-- progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-11-22 16:09:10 --> progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a rejoint #mcdevs 2016-11-22 16:15:45 <-- progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-11-22 16:19:33 --> progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a rejoint #mcdevs 2016-11-22 16:20:42 <-- progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a quitté (Client Quit) 2016-11-22 16:52:41 --> progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a rejoint #mcdevs 2016-11-22 17:06:57 --> kamcio96 (~kamcio96@host-81-190-232-89.dynamic.mm.pl) a rejoint #mcdevs 2016-11-22 17:16:36 <-- electronicboy (~electroni@atlas.valaria.pw) a quitté (Quit: You're not just a regular moron. You were designed to be a moron.) 2016-11-22 17:16:50 --> electronicboy (~electroni@atlas.valaria.pw) a rejoint #mcdevs 2016-11-22 17:18:50 <-- electronicboy (~electroni@atlas.valaria.pw) a quitté (Client Quit) 2016-11-22 17:19:04 --> electronicboy (~electroni@atlas.valaria.pw) a rejoint #mcdevs 2016-11-22 17:21:18 <-- jamierocks (~jamierock@lon1.lexteam.xyz) a quitté (Quit: Adios) 2016-11-22 18:14:51 <-- progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-11-22 18:26:31 --> progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a rejoint #mcdevs 2016-11-22 18:39:22 <-- kamcio96 (~kamcio96@host-81-190-232-89.dynamic.mm.pl) a quitté (Ping timeout: 244 seconds) 2016-11-22 19:09:10 <-- vemacs (~vemacs@unaffiliated/vemacs) a quitté (Ping timeout: 245 seconds) 2016-11-22 19:09:10 <-- jamietech (~jamietech@2604:180:0:405:3::babe) a quitté (Ping timeout: 245 seconds) 2016-11-22 19:09:10 -- vemacs|ded est maintenant connu sous le nom vemacs 2016-11-22 19:09:40 -- vemacs est maintenant connu sous le nom Guest86892 2016-11-22 19:12:49 --> vemacs_ (~vemacs@jet.fuel.cant.melt.da.nkmem.es) a rejoint #mcdevs 2016-11-22 19:13:01 --> jamietech (~jamietech@jamietech.jbouncer.jamiete.ch) a rejoint #mcdevs 2016-11-22 19:32:12 <-- ammar2 (admin@i.diddled.with.the.opers.so.they.klined.me) a quitté (Excess Flood) 2016-11-22 19:32:55 --> ammar2 (admin@i.diddled.with.the.opers.so.they.klined.me) a rejoint #mcdevs 2016-11-22 19:32:55 -- Mode #mcdevs [+v ammar2] par ChanServ 2016-11-22 19:33:52 --> UUID00 (~UUID00@BSN-210-233-141.dynamic.siol.net) a rejoint #mcdevs 2016-11-22 19:48:55 <-- Aikar (~quassel@wikia/Aikar) a quitté (Quit: No Ping reply in 180 seconds.) 2016-11-22 19:53:35 --> Aikar (~quassel@2604:4500::5102) a rejoint #mcdevs 2016-11-22 19:53:35 <-- Aikar (~quassel@2604:4500::5102) a quitté (Changing host) 2016-11-22 19:53:35 --> Aikar (~quassel@wikia/Aikar) a rejoint #mcdevs 2016-11-22 19:55:01 <-- progwml6 (~progwml6@n2-108-31.dhcp.drexel.edu) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-11-22 20:45:14 --> JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a rejoint #mcdevs 2016-11-22 20:54:41 --> kamcio96 (~kamcio96@host-81-190-232-89.dynamic.mm.pl) a rejoint #mcdevs 2016-11-22 20:58:53 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Disconnected by services) 2016-11-22 20:58:53 --> gurun_ (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2016-11-22 21:07:23 <-- KnownUnown (KnownUnown@die.in.firrre.com) a quitté (Ping timeout: 260 seconds) 2016-11-22 22:23:49 --> kamcio96_ (~kamcio96@18.ip-51-255-49.eu) a rejoint #mcdevs 2016-11-22 22:27:13 <-- kamcio96 (~kamcio96@host-81-190-232-89.dynamic.mm.pl) a quitté (Ping timeout: 244 seconds) 2016-11-22 22:29:27 --> kamcio96__ (~kamcio96@host-81-190-232-89.dynamic.mm.pl) a rejoint #mcdevs 2016-11-22 22:32:35 <-- kamcio96_ (~kamcio96@18.ip-51-255-49.eu) a quitté (Ping timeout: 260 seconds) 2016-11-22 23:14:14 <-- Extreme (extreme7@gateway/shell/xshellz/x-cekjeuufgswohoox) a quitté (Ping timeout: 244 seconds) 2016-11-22 23:15:58 --> Extreme (extreme7@gateway/shell/xshellz/x-wgrbszuefpbkclkx) a rejoint #mcdevs 2016-11-22 23:56:43 <-- JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a quitté (Ping timeout: 240 seconds) 2016-11-23 00:09:32 --> JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a rejoint #mcdevs 2016-11-23 00:12:42 --> pokechu22 (322347c6@gateway/web/freenode/ip.50.35.71.198) a rejoint #mcdevs 2016-11-23 00:15:23 --> progwml6 (~progwml6@pool-173-63-22-128.nwrknj.fios.verizon.net) a rejoint #mcdevs 2016-11-23 00:40:27 --> Pangea_ (~Pangea@unaffiliated/pangea) a rejoint #mcdevs 2016-11-23 00:46:45 <-- progwml6 (~progwml6@pool-173-63-22-128.nwrknj.fios.verizon.net) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-11-23 00:52:57 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2016-11-23 00:53:49 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Disconnected by services) 2016-11-23 00:53:49 --> gurun__ (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2016-11-23 00:55:31 <-- gurun_ (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Ping timeout: 256 seconds) 2016-11-23 01:38:00 --> Snootiful (b946ef7c@gateway/web/cgi-irc/kiwiirc.com/ip.185.70.239.124) a rejoint #mcdevs 2016-11-23 01:38:19 <-- bildramer (~bildramer@p2003004D2B28FF00908C45D007EBC632.dip0.t-ipconnect.de) a quitté (Ping timeout: 250 seconds) 2016-11-23 01:40:18 <-- kamcio96__ (~kamcio96@host-81-190-232-89.dynamic.mm.pl) a quitté (Quit: Leaving) 2016-11-23 01:43:32 <-- Snootiful (b946ef7c@gateway/web/cgi-irc/kiwiirc.com/ip.185.70.239.124) a quitté (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client) 2016-11-23 01:57:38 --> bildramer (~bildramer@p2003004D2B28FF00AC9BCCA14258DFA9.dip0.t-ipconnect.de) a rejoint #mcdevs 2016-11-23 01:59:22 <-- begin_end (admin@ho.by) a quitté (Read error: Connection reset by peer) 2016-11-23 02:05:21 --> begin_end (admin@ho.by) a rejoint #mcdevs 2016-11-23 02:05:23 -- begin_end est maintenant connu sous le nom EW8GU 2016-11-23 02:05:43 <-- bildramer (~bildramer@p2003004D2B28FF00AC9BCCA14258DFA9.dip0.t-ipconnect.de) a quitté (Ping timeout: 240 seconds) 2016-11-23 02:11:06 --> bildramer (~bildramer@p2003004D2B28FF00AC9BCCA14258DFA9.dip0.t-ipconnect.de) a rejoint #mcdevs 2016-11-23 02:20:56 --> progwml6 (~progwml6@pool-173-63-22-128.nwrknj.fios.verizon.net) a rejoint #mcdevs 2016-11-23 02:32:23 <-- UUID00 (~UUID00@BSN-210-233-141.dynamic.siol.net) a quitté (Ping timeout: 240 seconds) 2016-11-23 02:34:37 --> kamcio96 (~kamcio96@host-81-190-232-89.dynamic.mm.pl) a rejoint #mcdevs 2016-11-23 02:34:55 <-- kamcio96 (~kamcio96@host-81-190-232-89.dynamic.mm.pl) a quitté (Client Quit) 2016-11-23 02:49:13 --> KnownUnown (KnownUnown@die.in.firrre.com) a rejoint #mcdevs 2016-11-23 03:16:07 <-- JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a quitté (Quit: Bye) 2016-11-23 03:16:33 --> JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a rejoint #mcdevs 2016-11-23 03:28:55 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2016-11-23 03:29:28 <-- gurun__ (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Ping timeout: 265 seconds) 2016-11-23 03:42:42 <-- pokechu22 (322347c6@gateway/web/freenode/ip.50.35.71.198) a quitté (Ping timeout: 260 seconds) 2016-11-23 04:25:13 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Disconnected by services) 2016-11-23 04:25:13 --> gurun_ (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2016-11-23 04:51:17 <-- progwml6 (~progwml6@pool-173-63-22-128.nwrknj.fios.verizon.net) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-11-23 05:35:23 --> pierrec (~pierrec@2601:601:1200:e288:d63d:7eff:fe34:2eeb) a rejoint #mcdevs 2016-11-23 05:35:27 pierrec Hello 2016-11-23 05:35:41 pierrec I have a quick question regarding slot data 2016-11-23 05:38:20 pierrec So for example, if I sent packet 0x16 Set Slot (http://wiki.vg/Protocol#Set_Slot) 2016-11-23 05:38:59 pierrec 1. When I reach the slot data, do I just begin writing the Slot format (block id, count, etc...) spontaneously? 2016-11-23 05:40:12 pierrec 2. If I have NBT data, do I also just send that spontaneously without any headers (just jump right into writing the compound tag, then data...) 2016-11-23 05:45:59 pierrec 3. How does http://minecraft.gamepedia.com/Player.dat_format#Item_structure fit into the format of the NBT data? 2016-11-23 05:46:11 pierrec Thanks 2016-11-23 05:55:56 <-- Pangea_ (~Pangea@unaffiliated/pangea) a quitté (Quit: into the real world!) 2016-11-23 06:06:17 <-- pierrec (~pierrec@2601:601:1200:e288:d63d:7eff:fe34:2eeb) a quitté (Ping timeout: 258 seconds) 2016-11-23 06:24:22 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2016-11-23 06:28:18 <-- gurun_ (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Ping timeout: 265 seconds) 2016-11-23 06:38:40 --> redstonehelper_ (~redstoneh@unaffiliated/redstonehelper) a rejoint #mcdevs 2016-11-23 06:41:34 <-- redstonehelper (~redstoneh@unaffiliated/redstonehelper) a quitté (Ping timeout: 246 seconds) 2016-11-23 06:41:34 -- redstonehelper_ est maintenant connu sous le nom redstonehelper 2016-11-23 07:26:32 ishitatsuyuki lol, he quit 2016-11-23 07:43:09 <-- Tux (tux@what.shall.fail) a quitté (Quit: ZNC - http://znc.in) 2016-11-23 07:50:18 --> Tux (~tux@li1319-188.members.linode.com) a rejoint #mcdevs 2016-11-23 08:28:44 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Disconnected by services) 2016-11-23 08:28:44 --> gurun_ (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2016-11-23 08:36:51 rom1504 isn't that how you get your answers too, go in the middle of the street, yell your questions then go home ? 2016-11-23 09:15:37 --> zix (uid195779@gateway/web/irccloud.com/x-lpqrbxydndevzeot) a rejoint #mcdevs 2016-11-23 09:53:43 <-- Cxom (~Trinoxtio@rn-nat-129-97-131-0.dynamic.uwaterloo.ca) a quitté (Ping timeout: 265 seconds) 2016-11-23 11:28:02 <-- JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a quitté (Ping timeout: 256 seconds) 2016-11-23 11:36:41 <-- zix (uid195779@gateway/web/irccloud.com/x-lpqrbxydndevzeot) a quitté (Quit: Connection closed for inactivity) 2016-11-23 12:44:42 --> gurun (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2016-11-23 12:45:21 <-- Amaranth (~Amaranth@ubuntu/member/Amaranth) a quitté (Quit: Sleep time...) 2016-11-23 12:48:13 <-- gurun_ (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Ping timeout: 265 seconds) 2016-11-23 12:55:45 --> progwml6 (~progwml6@pool-173-63-22-128.nwrknj.fios.verizon.net) a rejoint #mcdevs 2016-11-23 13:10:10 --> Amaranth (~Amaranth@ubuntu/member/Amaranth) a rejoint #mcdevs 2016-11-23 13:10:10 -- Mode #mcdevs [+v Amaranth] par ChanServ 2016-11-23 13:37:55 <-- vemacs_ (~vemacs@jet.fuel.cant.melt.da.nkmem.es) a quitté (Changing host) 2016-11-23 13:37:55 --> vemacs_ (~vemacs@unaffiliated/vemacs) a rejoint #mcdevs 2016-11-23 13:38:05 -- vemacs_ est maintenant connu sous le nom vemacs 2016-11-23 14:02:19 --> Cxom (~Trinoxtio@rn-nat-129-97-131-0.dynamic.uwaterloo.ca) a rejoint #mcdevs 2016-11-23 14:58:09 --> barneygale (~barneygal@2.216.59.218) a rejoint #mcdevs 2016-11-23 15:11:18 --> UUID00 (~UUID00@BSN-210-233-141.dynamic.siol.net) a rejoint #mcdevs 2016-11-23 16:35:15 <-- Akaibu (uid118096@gateway/web/irccloud.com/x-nhlgkzasabjofgep) a quitté (Ping timeout: 260 seconds) 2016-11-23 16:36:44 --> Akaibu (uid118096@gateway/web/irccloud.com/x-brmwtfyzrzdpqzdu) a rejoint #mcdevs 2016-11-23 17:06:07 --> gurun_ (~gurun@c83-249-66-168.bredband.comhem.se) a rejoint #mcdevs 2016-11-23 17:06:07 <-- gurun (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Disconnected by services) 2016-11-23 17:25:38 --> kamcio96 (~kamcio96@156.17.37.219) a rejoint #mcdevs 2016-11-23 17:58:20 <-- NickG365 (~NickG365@cortex.starlabs.theflash.rocks) a quitté (Ping timeout: 260 seconds) 2016-11-23 18:00:45 --> NickG365 (~NickG365@cortex.starlabs.theflash.rocks) a rejoint #mcdevs 2016-11-23 18:35:55 <-- kashike (kashike@unaffiliated/kashike) a quitté (Ping timeout: 246 seconds) 2016-11-23 18:39:04 <-- kamcio96 (~kamcio96@156.17.37.219) a quitté (Ping timeout: 246 seconds) 2016-11-23 18:39:44 --> mindcat (~mindcat@115.45.250.98) a rejoint #mcdevs 2016-11-23 19:05:06 --> kamcio96 (~kamcio96@host-81-190-215-111.dynamic.mm.pl) a rejoint #mcdevs 2016-11-23 19:42:32 <-- jast (jast@zoidberg.org) a quitté (Ping timeout: 252 seconds) 2016-11-23 19:43:43 --> jast (jast@zoidberg.org) a rejoint #mcdevs 2016-11-23 20:06:54 --> kashike (kashike@unaffiliated/kashike) a rejoint #mcdevs 2016-11-23 20:17:21 --> Pangea (~Pangea@unaffiliated/pangea) a rejoint #mcdevs 2016-11-23 20:19:23 <-- kamcio96 (~kamcio96@host-81-190-215-111.dynamic.mm.pl) a quitté (Quit: Leaving) 2016-11-23 20:28:33 <-- __0x277F (~knm@unaffiliated/--0x277f/x-3357507) a quitté (Quit: Someone cut a network cable. Or restarted a systemd service.) 2016-11-23 20:28:33 <-- jflory7 (~jflory7@fedora/jflory7) a quitté (Quit: Someone cut a network cable. Or restarted a systemd service.) 2016-11-23 20:29:59 --> knm_ (~knm@irc.jwf.io) a rejoint #mcdevs 2016-11-23 20:30:59 --> jflory7 (~jflory7@fedora/jflory7) a rejoint #mcdevs 2016-11-23 20:41:27 --> pokechu22 (322347c6@gateway/web/freenode/ip.50.35.71.198) a rejoint #mcdevs 2016-11-23 20:48:01 --> JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a rejoint #mcdevs 2016-11-23 20:52:29 pokechu22 pierrec: 1 and 2: Yes. It's just data - treat it the same way you'd treat strings or positions or chunk sections. 3: Everything inside of the "tag" tag of the item is sent with the NBT data, so for instance you'd have "Unbreakable" directly inside of the compound. It's in a compound tag with an empty name rather than named "tag". 2016-11-23 20:53:22 pokechu22 (there's a chance that they'll check the chatlogs; that's what I do since I still haven't gotten a bouncer set up...) 2016-11-23 20:58:33 <-- gurun_ (~gurun@c83-249-66-168.bredband.comhem.se) a quitté (Ping timeout: 256 seconds) 2016-11-23 21:11:16 <-- barneygale (~barneygal@2.216.59.218) a quitté (Ping timeout: 252 seconds) 2016-11-23 21:39:10 <-- KnownUnown (KnownUnown@die.in.firrre.com) a quitté (Ping timeout: 245 seconds) 2016-11-23 21:43:25 <-- walle303 (~walle303@pisg/dev/walle303) a quitté (Ping timeout: 250 seconds) 2016-11-23 21:46:30 <-- progwml6 (~progwml6@pool-173-63-22-128.nwrknj.fios.verizon.net) a quitté (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-11-23 22:07:01 Not-ba84 [Charge] Wallbraker pushed 2 commits to master [+0/-0/±2] https://git.io/v1voS 2016-11-23 22:07:03 Not-ba84 [Charge] Wallbraker 91955f4 - power: Fix warnings 2016-11-23 22:07:04 Not-ba84 [Charge] Wallbraker 12db178 - power: Correct limits on camera angles 2016-11-23 22:13:43 <-- JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a quitté (Ping timeout: 240 seconds) 2016-11-23 22:16:21 <-- winny (~winny@unaffiliated/winstonw) a quitté (Ping timeout: 250 seconds) 2016-11-23 22:20:40 --> Poker1st (~Poker1st@2602:304:791e:9200:3599:5ee0:d7ac:5834) a rejoint #mcdevs 2016-11-23 22:25:20 --> winny (~winny@unaffiliated/winstonw) a rejoint #mcdevs 2016-11-23 22:27:43 --> JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a rejoint #mcdevs 2016-11-23 22:28:05 --> barneygale (~barneygal@2.216.59.218) a rejoint #mcdevs 2016-11-23 22:36:27 <-- winny (~winny@unaffiliated/winstonw) a quitté (Ping timeout: 258 seconds) 2016-11-23 22:46:21 <-- Poker1st (~Poker1st@2602:304:791e:9200:3599:5ee0:d7ac:5834) a quitté (Quit: Leaving) 2016-11-23 22:57:19 --> winny (~winny@unaffiliated/winstonw) a rejoint #mcdevs 2016-11-23 23:01:31 <-- JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a quitté (Remote host closed the connection) 2016-11-23 23:02:05 --> JustAnotherIdiot (~loser@im.from.the.gigamatrix.xyz) a rejoint #mcdevs 2016-11-23 23:40:40 --> pokechu22_ (322347c6@gateway/web/freenode/ip.50.35.71.198) a rejoint #mcdevs 2016-11-23 23:43:47 <-- pokechu22 (322347c6@gateway/web/freenode/ip.50.35.71.198) a quitté (Ping timeout: 260 seconds) 2016-11-23 23:44:30 --> KnownUnown (KnownUnown@die.in.firrre.com) a rejoint #mcdevs 2016-11-24 00:02:10 -- pokechu22_ est maintenant connu sous le nom pokechu22 2016-11-24 00:22:42 --> dude (~chris@pool-108-56-192-253.washdc.fios.verizon.net) a rejoint #mcdevs 2016-11-24 00:25:26 <-- dude (~chris@pool-108-56-192-253.washdc.fios.verizon.net) a quitté #mcdevs ("Leaving") 2016-11-24 00:41:29 --> walle303 (~walle303@pisg/dev/walle303) a rejoint #mcdevs 2016-11-24 00:46:24 <-- walle303 (~walle303@pisg/dev/walle303) a quitté (Ping timeout: 255 seconds) 2016-11-24 00:47:52 --> walle303 (~walle303@pisg/dev/walle303) a rejoint #mcdevs