Config
Log for #openttd on 4th December 2016:
Times are UTC Toggle Colours
00:00:06  *** Ethereal_Whisper has joined #openttd
00:01:20  *** Progman has quit IRC
00:06:16  <fonsinchen> V453000: https://github.com/ulfhermann/openttd/commit/7a2990bb8439d7fb3b44afb7fb7f2a21c08c6db8 should fix most of the problem.
00:07:13  <fonsinchen> Of course if one of those links actually times out, that is also the nuke protector doesn't visit it anymore, it still has to check the long list of trains.
00:20:38  <Wolf01> That game is cancer :D
00:27:46  *** gelignite has quit IRC
00:33:01  *** chomwitt has joined #openttd
00:41:43  *** FLHerne_ has joined #openttd
00:42:06  *** FLHerne has quit IRC
01:07:10  *** FLHerne_ has quit IRC
01:08:36  *** Fatmice has joined #openttd
01:15:10  <Wolf01> 'night
01:15:13  *** Wolf01 has quit IRC
02:02:25  *** Gja has quit IRC
02:28:38  *** maciozo_ has joined #openttd
02:30:35  *** maciozo has quit IRC
02:30:37  *** maciozo_ is now known as maciozo
02:55:18  *** maciozo has quit IRC
03:23:36  *** glx has quit IRC
04:12:58  *** tokai|noir has joined #openttd
04:12:58  *** ChanServ sets mode: +v tokai|noir
04:15:58  *** Speedy has quit IRC
04:15:59  *** Speedy` has joined #openttd
04:16:10  *** Speedy` is now known as Speedy
04:19:55  *** tokai has quit IRC
04:25:29  *** Speedy has quit IRC
04:30:44  *** Speedy` has joined #openttd
04:30:46  *** Speedy` is now known as Speedy
04:37:20  *** Myhorta has quit IRC
05:19:35  *** Smedles has joined #openttd
05:22:58  *** Smedles_ has quit IRC
05:30:36  *** HerzogDeXtEr1 has quit IRC
07:17:46  *** Smedles_ has joined #openttd
07:21:08  *** Smedles has quit IRC
07:26:38  *** sla_ro|master has joined #openttd
07:32:04  *** Arveen has joined #openttd
07:39:20  *** Arveen has quit IRC
07:40:09  *** Arveen has joined #openttd
07:48:59  *** andythenorth has joined #openttd
07:54:23  *** Progman has joined #openttd
08:08:18  <andythenorth> o/
08:51:20  *** Cals has joined #openttd
09:56:42  <fonsinchen> V453000: I don't think it's possible to identify trains that are the same. Consider the following counter example:
09:57:16  <fonsinchen> You have an order list shared between two trains, same engine, same wagons, no refit, just different age (necessarily, as you have to buy them in some order)
09:57:51  <fonsinchen> The order list consists of two separate cycles, which is done by having order 3 jump back to order 1, and order 6 jump back to order 3.
09:58:17  <fonsinchen> There is a conditional link between the cycles, based on vehicle reliability.
09:58:48  <fonsinchen> One of the trains is travelling along the first loop, the other one along the second.
09:59:25  <fonsinchen> At some point the reliability of the older train will decrease, allowing it to cross over to the other loop.
10:00:12  <fonsinchen> Now, at the point when DeleteStaleLinks is called, you have two trains, exactly the same engine and wagons, heading on the same order to the same station, but doing radically different things.
10:00:31  <fonsinchen> I think there is no way to find out about this without emulating the orders.
10:05:10  <fonsinchen> The order language might actually be turing complete. You have conditional branches and the ability to read (conditions) and write (refit) data. You probably need some strange contraptions to make sure you read the same data you've written before, but it might be possible.
10:05:37  <fonsinchen> Well, the data tape is not very long
10:07:43  <fonsinchen> So, maybe we just need a setting to turn off the link graph.
10:11:48  <fonsinchen> Unfortunately I don't have the time to figure out how the settings system works right now, but once you know it should be trivial to hide all link graph related activity behind some if (...)
10:17:47  <fonsinchen> Actually, the only thing you have to do is make sure that GoodsEntry::link_graph always remains INVALID_LINK_GRAPH, by changing IncreaseStats and UpdateStationWaiting accordingly. OK, let me try ...
10:19:33  <Eddi|zuHause> settings are "easy", just need an entry in settings.ini and one in settings_gui.cpp (i think)
10:19:49  <Eddi|zuHause> and bump the savegame version by 1
10:31:35  <fonsinchen> Or we recycle the link graph interval setting for this. If you set the link graph interval to "never", we can skip updating the flows altogether. So far there is no value for "never", but 0 should do.
10:39:05  *** Compu has quit IRC
10:39:29  *** Compu has joined #openttd
10:40:18  *** Compu has joined #openttd
10:44:18  *** welshdragon has joined #openttd
10:48:00  <Eddi|zuHause> i'd prefer a separate "disable linkgraph if cargodist is disabled" setting
10:48:31  <V453000> makes a lot of sense to me
10:48:42  <V453000> also hello gentlemen :)
10:54:43  <fonsinchen> Let's not clutter the settings GUI even further. There is no central place to disable cargodist. You can do that individually for different types of cargo.
10:55:19  <V453000> that's just 1 place with 2 buttons, no?
10:55:23  <Eddi|zuHause> yes, but if you enable any one of them, you shouldn't have to tinker with the linkgraph interval to make it work again
10:55:52  <Eddi|zuHause> could also be a hidden setting
10:55:58  <fonsinchen> The cleanest way would be to just skip the updates for the cargos that are set to "manual"
10:56:05  <fonsinchen> no further settings needed then.
10:56:35  <fonsinchen> Drops the feature of seeing the link graph in the smallmap in that case, though.
10:56:41  <V453000> whatever works :)
10:57:19  <fonsinchen> V453000: How far does https://github.com/ulfhermann/openttd/commit/7a2990bb8439d7fb3b44afb7fb7f2a21c08c6db8 take us?
10:58:02  <V453000> uhmm
10:58:06  <V453000> I have no idea?
10:58:23  <V453000> is it in trunk yet?
10:58:30  <V453000> I mean, can I test it somehow?
10:59:38  <V453000> I don't really understand openttd code ;P
11:00:43  <fonsinchen> Argh, the vehicles can refit. So we don't know in advance if we need to emulate their orders in order to cover the automatically routed cargoes.
11:00:44  <fonsinchen> mess
11:01:27  <Eddi|zuHause> then you can only disable the linkgraph if ALL cargodist settings are off
11:04:08  <fonsinchen> Well ... DeleteStaleLinks knows which cargoes it wants to check. So we can drop the "is alive" check on manually routed cargoes and just delete the link when it seems dead. That is indeed very simple.
11:04:59  <fonsinchen> You'll get some fluctuation on rarely visited links for manually routed cargo then, but that would be the only downside.
11:05:54  *** Biolunar has joined #openttd
11:10:17  *** Wormnest has joined #openttd
11:17:43  *** welshdragon has quit IRC
11:39:48  <fonsinchen> https://github.com/ulfhermann/openttd/commit/0505b7a3eb65d99f0966a723f3c4e13d48d422a6 should do
11:40:08  <fonsinchen> So, who is going to review those?
11:42:07  <Eddi|zuHause> i think frosch is the most active dev these days
11:42:38  <fonsinchen> Should I wait for him or just commit the stuff? I have to leave in about half an hour ...
11:43:22  <Eddi|zuHause> i can't tell you either way
11:54:37  *** aard has joined #openttd
11:59:17  <andythenorth> probably better to wait
11:59:32  * andythenorth prefers to see stuff just committed, personally
11:59:55  <andythenorth> but when it goes wrong, it demotivates whoever has to unpick the result
12:00:11  <andythenorth> and we don’t have many active contributors left :)
12:25:12  *** frosch123 has joined #openttd
12:26:36  <andythenorth> quak
12:30:30  <frosch123> moi
12:31:24  <V453000> heyo ho
12:31:37  <V453000> frosch123:  [12:39] <fonsinchen> https://github.com/ulfhermann/openttd/commit/0505b7a3eb65d99f0966a723f3c4e13d48d422a6 should do [12:40] <fonsinchen> So, who is going to review those? [12:42] <Eddi|zuHause> i think frosch is the most active dev these days [12:42] <fonsinchen> Should I wait for him or just commit the stuff? I have to leave in about half an hour ...
12:31:40  <V453000> :)
12:35:52  <andythenorth> can I check the class of a cargo during cargo_subtype_text cb?
12:36:02  * andythenorth thought it was possible, but getting odd results
12:38:20  <andythenorth> bad nml switch
12:38:23  <andythenorth> fixed
12:38:28  *** lucy has left #openttd
12:39:28  <frosch123> is there an option in github to show a diff without whitespace/indentation changes?
12:40:31  * andythenorth looks
12:41:18  <frosch123> there is only the split view, but that also does not align the lines as i hope
12:41:46  <andythenorth> https://github.com/blog/967-github-secrets
12:41:49  <andythenorth> allegedly
12:42:18  <andythenorth> wow that’s a much smaller diff :)
12:42:41  <frosch123> exactly :)
12:43:51  <frosch123> well, posted my review in .dev
12:48:46  <andythenorth> is the order too weird? http://dev.openttdcoop.org/attachments/download/8214/sam_refits.png
12:48:58  <andythenorth> it’s default, 25% under-load, 25% over-load
12:49:10  <andythenorth> there are no bonuses or penalties
12:56:20  *** HerzogDeXtEr has joined #openttd
13:19:38  *** chomwitt has quit IRC
13:19:58  *** chomwitt has joined #openttd
13:24:33  *** Myhorta has joined #openttd
13:26:01  *** Gja has joined #openttd
13:35:26  *** Cals has quit IRC
14:11:13  <V453000> andythenorth: do the graphics change?
14:13:49  *** Fatmice has quit IRC
14:14:17  <andythenorth> nope
14:14:24  <andythenorth> that would be different model
14:18:31  <andythenorth> I am play-testing whether it’s worth it
14:21:41  *** Alberth has joined #openttd
14:21:41  *** ChanServ sets mode: +o Alberth
14:22:30  *** BluesInTheNet has quit IRC
14:47:14  *** maciozo has joined #openttd
14:53:51  *** BluesInTheNet has joined #openttd
15:03:33  *** FLHerne has joined #openttd
15:17:56  *** umgeher_ has joined #openttd
15:18:06  *** umgeher has quit IRC
15:41:12  <andythenorth> is cat
15:41:54  <V453000> very cat
15:43:06  <andythenorth> thought so
15:43:12  <andythenorth> steeltown is nuts
15:46:11  <V453000> is it
15:47:42  *** Cals has joined #openttd
15:57:04  <Alberth> so I should play it with NUTS too?
15:58:02  <Alberth> I guess I should try that :)
16:07:54  <andythenorth> :P
16:08:01  <andythenorth> Iron Horse has the metal wagons
16:08:08  <andythenorth> but nuts is…nuts
16:08:58  <frosch123> maybe heavy metal should be transported on motor bikes
16:09:16  <andythenorth> what about coke and slag?
16:09:34  * andythenorth keeps making grfs with unfortunate double references
16:09:53  <frosch123> coke is a santa thing
16:14:00  <Alberth> :)
16:14:57  * andythenorth is providing explanations for some of the more unusal FIRS cargos
16:15:05  <andythenorth> I will probably regret this, due to the foamers :P
16:15:17  <Alberth> you just live in the wrong country :)
16:15:22  <andythenorth> do I need to provide one for Alcohol? :P
16:17:03  <Alberth> "The FIRS author could not bear having an economy without the stuff" ?
16:21:35  <Lejving> hows it going with 27681 any news yet?
17:07:41  <Alberth> @commit 27681
17:07:41  <DorpsGek> Alberth: Commit r27681 doesn't exists
17:07:48  <Alberth> nope
17:08:32  *** glx has joined #openttd
17:08:32  *** ChanServ sets mode: +v glx
17:23:10  *** Wolf01 has joined #openttd
17:23:22  <Wolf01> o/
17:24:08  *** FLHerne has quit IRC
17:24:23  *** FLHerne has joined #openttd
17:28:08  *** FLHerne has quit IRC
17:30:15  *** FLHerne has joined #openttd
17:52:18  <andythenorth> Do I need explanatory text for Explosives cargo? o_O
17:52:19  <andythenorth> :P
17:53:12  <frosch123> where?
17:54:58  <goodger> andythenorth: do a patch to cause a 0.00001/s chance that an explosives train will explode
17:55:28  *** Cals has quit IRC
17:56:51  <andythenorth> frosch123: here :P http://bundles.openttdcoop.org/firs/push/LATEST/docs/html/cargos.html#explosives
17:59:52  <frosch123> hmm, the engsup description does not fit :p
18:00:34  <Alberth> add wikipedia links?
18:01:11  <frosch123> https://devs.openttd.org/~frosch/nrt_infra.png <- should there be a separate tram section? or is that too weird if there is only default road/tram?
18:02:11  <Wolf01> Expandable as a treeview?
18:02:15  <Alberth> build tool is also combined?
18:02:27  <frosch123> Wolf01: tmwftlb
18:02:37  <Wolf01> Sum them
18:02:41  <Alberth> if so, I'd just merge it in the infrastructure window too
18:02:45  <frosch123> Alberth: build tools: yes, vehicle list: currently no
18:03:02  <frosch123> Wolf01: i just did it the same as for railtypes
18:03:04  <Alberth> ah, nicely consistent :p
18:03:19  <frosch123> there are separate costs involved
18:03:27  *** arayawa has joined #openttd
18:03:27  *** Wiczus has joined #openttd
18:03:27  *** Llewellynn has joined #openttd
18:03:27  *** Marcuslus has joined #openttd
18:03:56  *** Gwyneiraarn94 has joined #openttd
18:03:57  *** suLLaTNoS has joined #openttd
18:03:57  *** shatskrin has joined #openttd
18:03:57  *** Morwerthira has joined #openttd
18:03:58  <Alberth> but it make sense to split the vehicle list imho
18:04:10  <Wolf01> Time to restrict channel joins?
18:04:26  *** RAZAKI has joined #openttd
18:04:27  *** _MYRGJLJ_330 has joined #openttd
18:04:27  *** Temerum has joined #openttd
18:04:29  *** freyjardr has joined #openttd
18:04:30  <frosch123> @mode +R
18:04:30  *** DorpsGek sets mode: +R 
18:04:43  <frosch123> is there trouble ahead?
18:04:57  *** llIAnniD has joined #openttd
18:04:57  *** ICOVELLAUES has joined #openttd
18:05:01  <Wolf01> Btw, what about if we add more infrastructure for each type?
18:05:27  *** blodeuwelis has joined #openttd
18:05:27  *** Pavlicov has joined #openttd
18:05:57  *** hectores has joined #openttd
18:05:57  *** ArCiNtHnIa has joined #openttd
18:06:26  *** calcha has joined #openttd
18:06:57  *** SZKUSKI has joined #openttd
18:07:48  <frosch123> more what?
18:08:00  <Alberth> if road types have different infra structure than trams, it makes sense to split it in the infra structure window
18:09:25  <Wolf01> Could be an idea
18:12:46  <Wolf01> Btw, I would have loved the catenary as an addon (on rails too), so you don't need 2 types of the very same track/road to add a catenary to it, maybe the road/rail type only defines how the catenary built over it should look and how much it costs to build/maintain
18:12:47  *** _xXOosawadaobaXx_ has joined #openttd
18:12:47  *** _Galaharnt97_ has joined #openttd
18:12:47  *** WEohsTAnulF has joined #openttd
18:12:47  *** Malach has joined #openttd
18:12:47  *** xXArellanoXx has joined #openttd
18:12:47  *** barnett has joined #openttd
18:12:47  *** xXHestoclelesXx has joined #openttd
18:12:47  *** xXBaSzAsKiXx has joined #openttd
18:12:47  *** xXElinorsXx has joined #openttd
18:12:47  *** rrangann763 has joined #openttd
18:12:47  *** Wealld has joined #openttd
18:12:47  *** _WHEAT_ has joined #openttd
18:12:47  *** CHENIC has joined #openttd
18:12:47  *** Antonky has joined #openttd
18:12:47  *** helgiBIl has joined #openttd
18:12:48  *** enNiLtt has joined #openttd
18:12:48  *** Lavras has joined #openttd
18:12:48  *** YaMaMoToKa has joined #openttd
18:12:48  *** Atepomia has joined #openttd
18:12:48  *** JeDiDiM has joined #openttd
18:12:48  *** DENTATUSNUS has joined #openttd
18:12:48  *** OOSHRA5 has joined #openttd
18:12:48  *** Suetus has joined #openttd
18:12:48  *** meirionaor has joined #openttd
18:12:48  *** _Filochki_04 has joined #openttd
18:12:48  *** xXGwenfreynXx863 has joined #openttd
18:12:48  *** Bright has joined #openttd
18:12:48  *** Eilwean has joined #openttd
18:12:48  *** Osmunar has joined #openttd
18:12:48  *** OoHiRaMa has joined #openttd
18:12:48  *** _hjalmr_ has joined #openttd
18:12:48  *** Dreasis has joined #openttd
18:12:48  *** Hoag has joined #openttd
18:12:48  *** RSGRANNNI has joined #openttd
18:12:48  *** MENELAId has joined #openttd
18:12:48  *** Destles has joined #openttd
18:12:48  *** Ennilldr has joined #openttd
18:12:48  *** ZYBUR8 has joined #openttd
18:12:48  *** sveigarr has joined #openttd
18:12:48  *** lOrA has joined #openttd
18:12:48  *** frumblul has joined #openttd
18:12:48  *** luculleous has joined #openttd
18:12:48  *** Flossie has joined #openttd
18:12:48  *** HRUNTILD has joined #openttd
18:12:48  *** Ynhildrun has joined #openttd
18:12:48  *** Suitato has joined #openttd
18:12:48  *** Andraia has joined #openttd
18:12:48  *** weohstanif has joined #openttd
18:12:48  *** OsBeOfWiLd has joined #openttd
18:12:48  *** RELASDO has joined #openttd
18:12:48  *** Elwinfriund has joined #openttd
18:12:48  *** xX_veram_Xx has joined #openttd
18:12:48  *** Godwiae has joined #openttd
18:12:48  *** Cynebda has joined #openttd
18:12:48  *** Ewings has joined #openttd
18:12:48  *** Gwenlliaen has joined #openttd
18:12:48  *** alicea has joined #openttd
18:12:48  *** CZEWSKRKO has joined #openttd
18:12:48  *** SIEROKI has joined #openttd
18:12:48  *** oWSKi has joined #openttd
18:12:48  *** Barskets has joined #openttd
18:12:48  *** Oforfer has joined #openttd
18:12:48  *** Coward has joined #openttd
18:12:48  *** Hjalmne has joined #openttd
18:12:48  *** struCLa has joined #openttd
18:12:48  *** GOLAb has joined #openttd
18:12:48  *** glaedrht has joined #openttd
18:12:48  *** _IDoSoEST_ has joined #openttd
18:12:48  *** TAGIRAIARA has joined #openttd
18:12:48  *** _jehdeph_ has joined #openttd
18:12:48  *** CoLlUrA has joined #openttd
18:12:48  *** Icollnos has joined #openttd
18:12:48  *** Hrethorka has joined #openttd
18:12:48  *** MadRId has joined #openttd
18:12:48  *** CERIDWALINT has joined #openttd
18:12:48  *** AFANASNOV43 has joined #openttd
18:12:48  *** xX_Biryukovsky_Xx has joined #openttd
18:12:48  *** xXSaHaKuGiKiXx has joined #openttd
18:12:48  *** TUCCCUS has joined #openttd
18:12:48  *** Zechaelael has joined #openttd
18:12:48  *** Soberor has joined #openttd
18:12:48  *** cidiuwch has joined #openttd
18:12:48  *** _orloVKy_0 has joined #openttd
18:12:48  *** HALLVARNG has joined #openttd
18:12:48  *** _xXRvalrrXx_ has joined #openttd
18:12:48  *** Heimta has joined #openttd
18:12:48  *** Cassimoppe has joined #openttd
18:12:48  *** LlEwElYnDyN has joined #openttd
18:12:48  *** sOcrAEUs has joined #openttd
18:12:48  *** _Hranger_127 has joined #openttd
18:12:48  *** Simmering has joined #openttd
18:12:48  *** dunning has joined #openttd
18:12:48  *** MALAKOVSIN has joined #openttd
18:12:48  *** Deinifin has joined #openttd
18:12:48  *** rONwArt has joined #openttd
18:12:48  *** COmIGo has joined #openttd
18:12:48  *** xXElNAtHELXx has joined #openttd
18:12:48  *** BEYLAKA443 has joined #openttd
18:12:48  *** xX_DeTrImUa_Xx has joined #openttd
18:12:48  *** Harisk has joined #openttd
18:12:48  *** Isgleed4 has joined #openttd
18:12:48  *** _Aldikr_ has joined #openttd
18:12:48  *** FeRrIeR has joined #openttd
18:12:48  *** rifullor has joined #openttd
18:12:48  *** xXfoldardrrdrXx has joined #openttd
18:12:48  *** Aksaev has joined #openttd
18:12:48  *** Artemisdas has joined #openttd
18:12:48  *** Rotutlos has joined #openttd
18:12:48  *** HoUdOuSaI has joined #openttd
18:12:48  *** DaGfInR has joined #openttd
18:12:48  *** Nehemiaah has joined #openttd
18:12:48  *** xXCICOLLSUSXx has joined #openttd
18:12:48  *** HoWaRtH has joined #openttd
18:12:48  *** Cinniusius has joined #openttd
18:12:48  *** toyotsuta has joined #openttd
18:12:48  *** _MEGOWN_ has joined #openttd
18:12:48  *** Philones has joined #openttd
18:12:48  *** Marki has joined #openttd
18:12:48  *** MiLiAn has joined #openttd
18:12:48  *** xXYOSHIIDAXx has joined #openttd
18:12:48  *** ShArKeY has joined #openttd
18:12:48  *** xXICAUNUWYNXx has joined #openttd
18:12:48  *** xX_SUNNGIAE_Xx has joined #openttd
18:12:48  *** AIZARA has joined #openttd
18:12:48  *** Sakiui has joined #openttd
18:12:48  *** Sextiusllo has joined #openttd
18:12:48  *** Rrangigu has joined #openttd
18:12:48  *** ceber has joined #openttd
18:12:48  *** Schepker has joined #openttd
18:12:48  *** botts has joined #openttd
18:12:48  *** Horatiaus has joined #openttd
18:12:48  *** AlIeSiNtA has joined #openttd
18:12:48  *** xXDeWyDdYnNXx9 has joined #openttd
18:12:48  *** _Savitch_ has joined #openttd
18:12:48  *** eimdallpul has joined #openttd
18:12:48  *** gWENtan has joined #openttd
18:12:48  *** eadwrht has joined #openttd
18:12:48  *** Gedalim has joined #openttd
18:12:48  *** Fraser has joined #openttd
18:12:48  *** _Wiglaro03_ has joined #openttd
18:12:48  *** MEREWIWEN has joined #openttd
18:12:48  *** Aelfrrg has joined #openttd
18:12:48  *** hrethrr has joined #openttd
18:12:48  *** xXFItElaIOXx901 has joined #openttd
18:12:48  *** bRoNDElAF has joined #openttd
18:12:48  *** HaRaAn has joined #openttd
18:12:48  *** xXPiesiolaXx has joined #openttd
18:12:48  *** GUINEVERWYN has joined #openttd
18:12:48  *** UNdIeR has joined #openttd
18:12:48  *** _elreweae_33 has joined #openttd
18:12:48  *** _xXEADWINFRARDXx_ has joined #openttd
18:12:48  *** theanaxra has joined #openttd
18:12:48  *** Eleazadad has joined #openttd
18:12:48  *** BrAgRr has joined #openttd
18:12:48  *** Equitus has joined #openttd
18:12:48  *** xXSvanhilrrXx227 has joined #openttd
18:12:48  *** ElBeOfOfU has joined #openttd
18:12:48  *** MORIMOUDA has joined #openttd
18:12:48  *** Mateski has joined #openttd
18:12:48  *** urda has joined #openttd
18:12:48  *** NEWBOld has joined #openttd
18:12:48  *** Maggard77 has joined #openttd
18:12:48  *** Setoda has joined #openttd
18:12:48  *** Ooyamda has joined #openttd
18:12:48  *** VISHNEOV has joined #openttd
18:12:48  *** _Helicmas_ has joined #openttd
18:12:48  *** PILAKHA has joined #openttd
18:12:48  *** _Corvinius_ has joined #openttd
18:12:48  *** THUNDHUD has joined #openttd
18:12:48  *** besziak has joined #openttd
18:12:48  *** VALGNDR has joined #openttd
18:12:48  *** Nerthoreti has joined #openttd
18:12:48  *** sTaFldr has joined #openttd
18:12:48  *** TRAZENDOAVA has joined #openttd
18:12:48  *** Moleki has joined #openttd
18:12:48  *** JeHoRaIm has joined #openttd
18:12:48  *** xXREPHATIAHXx has joined #openttd
18:12:48  *** VaUgHnDd has joined #openttd
18:12:48  *** xXKradelXx has joined #openttd
18:12:48  *** Jarrve has joined #openttd
18:12:48  *** _cerrfan_5 has joined #openttd
18:12:48  *** Andinusos has joined #openttd
18:12:48  *** pontiu has joined #openttd
18:12:48  *** Arka has joined #openttd
18:12:49  *** GEFJOUND has joined #openttd
18:12:49  *** Godwiro has joined #openttd
18:12:49  *** Ostoore has joined #openttd
18:12:49  *** Condaan has joined #openttd
18:12:49  *** xXdELLInTRA62Xx has joined #openttd
18:12:49  *** gwenfrrin has joined #openttd
18:12:49  *** Beowuald has joined #openttd
18:12:49  *** HoRiGuTa has joined #openttd
18:12:49  *** Olwinsi has joined #openttd
18:12:49  *** AgEnOeR has joined #openttd
18:12:49  *** Meretem has joined #openttd
18:12:49  *** itaharase360 has joined #openttd
18:12:49  *** xXWarchuki407Xx has joined #openttd
18:12:49  *** EXUM has joined #openttd
18:12:49  *** Zenone has joined #openttd
18:12:49  *** HUGASNG has joined #openttd
18:12:49  *** RUdiAna has joined #openttd
18:12:49  *** Fukunagaota has joined #openttd
18:12:49  *** _loptasrt132_ has joined #openttd
18:12:49  *** Petrogiov has joined #openttd
18:12:49  *** PoStUs has joined #openttd
18:12:49  *** Eucliyta has joined #openttd
18:12:49  *** xXAeronnedXx03 has joined #openttd
18:12:49  *** xXoloseXx has joined #openttd
18:12:49  *** LUBASKI has joined #openttd
18:12:49  *** WeSsOn has joined #openttd
18:12:49  *** Beksaara has joined #openttd
18:12:49  *** Drystel has joined #openttd
18:12:49  *** DzIcElA has joined #openttd
18:12:49  *** Sullatucos has joined #openttd
18:12:49  *** CaErWeNdD has joined #openttd
18:12:49  *** Laodamaseus has joined #openttd
18:12:49  *** PLUMBER has joined #openttd
18:12:49  *** Dagfinnfr has joined #openttd
18:12:49  *** eormenles has joined #openttd
18:12:49  *** SeAxNeAtRe has joined #openttd
18:12:49  *** OOTAKAWNO has joined #openttd
18:12:49  *** Mektaski has joined #openttd
18:12:49  *** GwEnNeOs has joined #openttd
18:12:49  *** Brezhev has joined #openttd
18:12:49  *** akumovov has joined #openttd
18:12:49  *** xXjOThAeLeLXx184 has joined #openttd
18:12:49  *** Wodallnj has joined #openttd
18:12:49  *** Ondsst has joined #openttd
18:12:49  *** _xXCadfaenidXx_ has joined #openttd
18:12:49  *** Klesz has joined #openttd
18:12:49  *** Heliceus3 has joined #openttd
18:12:49  *** MeAgAn has joined #openttd
18:12:49  *** _xXHaMaIcXx_ has joined #openttd
18:12:49  *** BEOWULFIEOM21 has joined #openttd
18:12:49  *** Gruffen has joined #openttd
18:12:49  *** Laodone has joined #openttd
18:12:49  *** NiLSA has joined #openttd
18:12:49  *** Ingsbaerv has joined #openttd
18:12:49  *** VeRa has joined #openttd
18:12:49  *** Sveiri457 has joined #openttd
18:12:49  *** ALISAMALIS has joined #openttd
18:12:49  *** PORCIIUS has joined #openttd
18:12:49  *** Demoleoea has joined #openttd
18:12:49  *** keithley has joined #openttd
18:12:49  *** BLODwOS has joined #openttd
18:12:49  *** MaIrWeRaEl has joined #openttd
18:12:49  *** Assema has joined #openttd
18:12:49  *** Polskiina has joined #openttd
18:12:49  *** DWYFALIO has joined #openttd
18:12:49  *** Jocasice has joined #openttd
18:12:49  *** Eadwinae has joined #openttd
18:12:49  *** _VASTARDIS_ has joined #openttd
18:12:49  *** RhIaNuAn has joined #openttd
18:12:49  *** Eldaram has joined #openttd
18:12:49  *** Greis has joined #openttd
18:12:49  *** Ashiki has joined #openttd
18:12:49  *** YuEn has joined #openttd
18:12:49  *** PAPIRIUMUS has joined #openttd
18:12:49  *** abnobagus has joined #openttd
18:12:49  *** Ingwiglhro has joined #openttd
18:12:49  *** philomena has joined #openttd
18:12:49  *** griffior has joined #openttd
18:12:49  *** Hosoka has joined #openttd
18:12:49  *** pANiha has joined #openttd
18:12:49  *** Caswnon has joined #openttd
18:12:49  *** dizeas has joined #openttd
18:12:49  *** Bricula has joined #openttd
18:12:49  *** GaSaHtA has joined #openttd
18:12:49  *** aNNEIuSgUs has joined #openttd
18:12:49  *** NAPILINEK16 has joined #openttd
18:12:49  *** GwYnFlA64 has joined #openttd
18:12:49  *** Aquiliusnas has joined #openttd
18:12:49  *** GWILLYWELDA has joined #openttd
18:12:49  *** xXGEDALEELAZXx has joined #openttd
18:12:49  *** _xXSigtryggrekkXx_ has joined #openttd
18:12:49  *** Manuelito has joined #openttd
18:12:49  *** xXAlAtNyEvXx has joined #openttd
18:12:49  *** Semi69 has joined #openttd
18:12:49  *** UCHIiHI741 has joined #openttd
18:12:49  *** bealiakiel has joined #openttd
18:12:49  *** SaBrRr has joined #openttd
18:12:49  *** Kurniak98 has joined #openttd
18:12:49  *** xXEadgyaeXx has joined #openttd
18:12:49  *** Broadnax445 has joined #openttd
18:12:49  *** koroleur has joined #openttd
18:12:49  *** skilfinn has joined #openttd
18:12:49  *** vIbIUNiuUS has joined #openttd
18:12:49  *** Baraclet has joined #openttd
18:12:49  *** Pecatoste has joined #openttd
18:12:49  *** Hatake has joined #openttd
18:12:49  *** Dagfinnrldr has joined #openttd
18:12:49  *** Quanom has joined #openttd
18:12:49  *** SCRIBIUUS has joined #openttd
18:12:49  *** BEILER has joined #openttd
18:12:49  *** nuciusrva has joined #openttd
18:12:49  *** anai has joined #openttd
18:12:49  *** Wodowskki has joined #openttd
18:12:49  *** frankyn has joined #openttd
18:12:49  *** Bari has joined #openttd
18:12:49  *** NeMeIoS has joined #openttd
18:12:49  *** Telemces has joined #openttd
18:12:49  *** Osbeofrld has joined #openttd
18:12:49  *** Dolczy has joined #openttd
18:12:49  *** xXBeowulfngaXx has joined #openttd
18:12:49  *** ArAkIgI has joined #openttd
18:12:49  *** Hallbdr has joined #openttd
18:12:49  *** shatskyman has joined #openttd
18:12:49  *** xXrifugerXx has joined #openttd
18:12:49  *** GAGARISTOKOV has joined #openttd
18:12:49  *** blodni has joined #openttd
18:12:49  *** LAZYNASZ has joined #openttd
18:12:49  *** Cullana has joined #openttd
18:12:49  *** jarra has joined #openttd
18:12:49  *** Gawairwein786 has joined #openttd
18:12:49  *** GaReThUr has joined #openttd
18:12:49  *** Khrusupogov has joined #openttd
18:12:49  *** cometta has joined #openttd
18:12:49  *** ceriddylos has joined #openttd
18:12:49  *** Sabatelli has joined #openttd
18:12:49  *** Eastwood19 has joined #openttd
18:12:49  *** Calviuius has joined #openttd
18:12:49  *** xXzhukovrovXx4 has joined #openttd
18:12:49  *** Ergljarr has joined #openttd
18:12:49  *** xXCassegomawnXx has joined #openttd
18:12:49  *** Dala has joined #openttd
18:12:49  *** Gelaot has joined #openttd
18:12:49  *** Ingvaldrfr has joined #openttd
18:12:49  *** VEDIULIUS has joined #openttd
18:12:49  *** owelldd has joined #openttd
18:12:49  *** HyPaTrEuDeS has joined #openttd
18:12:49  *** drafts has joined #openttd
18:12:49  *** gorby has joined #openttd
18:12:49  *** _Sigmudri_ has joined #openttd
18:12:49  *** Trahefor has joined #openttd
18:12:49  *** SNORRIAND has joined #openttd
18:12:49  *** Ysbadta has joined #openttd
18:12:49  *** kasparovnov has joined #openttd
18:12:49  *** Hefinor has joined #openttd
18:12:49  *** Garmuld has joined #openttd
18:12:49  *** xX_Niitakhi_Xx has joined #openttd
18:12:49  *** tarais has joined #openttd
18:12:49  *** TAMESMMA has joined #openttd
18:12:49  *** xXENNILDUL11Xx has joined #openttd
18:12:49  *** AISHIHI has joined #openttd
18:12:50  *** Aliesidd has joined #openttd
18:12:50  *** _xXNehemiahakXx_ has joined #openttd
18:12:50  *** Consoado95 has joined #openttd
18:12:50  *** hanGhli has joined #openttd
18:12:50  *** AMBUSTOS has joined #openttd
18:12:50  *** TEMEND has joined #openttd
18:12:50  *** lEOniDesSTa has joined #openttd
18:12:50  *** Lluisis has joined #openttd
18:12:50  *** _Curiatus_ has joined #openttd
18:12:50  *** Watley has joined #openttd
18:12:50  *** Malakovrov has joined #openttd
18:12:50  *** _MuNtEr_735 has joined #openttd
18:12:50  *** Hrafnatr has joined #openttd
18:12:50  *** Svanhilrir has joined #openttd
18:12:50  *** _Rimnirvi86_ has joined #openttd
18:12:50  *** GEATOC has joined #openttd
18:12:50  *** MOSTRAOS has joined #openttd
18:12:50  *** bish has joined #openttd
18:12:50  *** Southerly has joined #openttd
18:12:50  *** xX_HELEDTH_Xx has joined #openttd
18:12:50  *** Geirskun has joined #openttd
18:12:50  *** Shiyara has joined #openttd
18:12:50  *** _xXNantonniaXx_ has joined #openttd
18:12:50  *** _Faires_ has joined #openttd
18:12:50  *** xX_Arintawn_Xx has joined #openttd
18:12:50  *** Hiratouima has joined #openttd
18:12:50  *** Herebealow has joined #openttd
18:12:50  *** xXNnillrXx has joined #openttd
18:12:50  *** _Ootsono_ has joined #openttd
18:12:50  *** xX_segashni_Xx has joined #openttd
18:12:50  *** Hallvarir has joined #openttd
18:12:50  *** xXsvipallngrXx7 has joined #openttd
18:12:50  *** Llewelynym has joined #openttd
18:12:50  *** Xenopth has joined #openttd
18:12:50  *** Eowulfgang has joined #openttd
18:12:50  *** Annaevoina has joined #openttd
18:12:50  *** Hennsk has joined #openttd
18:12:50  *** bragrgr has joined #openttd
18:12:50  *** xXSooXx has joined #openttd
18:12:50  *** sigtryggdr has joined #openttd
18:12:50  *** pedraza has joined #openttd
18:12:50  *** Vivess has joined #openttd
18:12:50  *** Pacilto has joined #openttd
18:12:50  *** Adachano has joined #openttd
18:12:50  *** xXAnrhonenXx16 has joined #openttd
18:12:50  *** BROSLS has joined #openttd
18:12:50  *** Gunt has joined #openttd
18:12:50  *** xXLlywelelXx has joined #openttd
18:12:50  *** Mizuno has joined #openttd
18:12:50  *** CURSOSA has joined #openttd
18:12:50  *** Artenkmov has joined #openttd
18:12:50  *** SIGuhR has joined #openttd
18:12:50  *** Valgaldragu has joined #openttd
18:12:50  *** Dobrikohov has joined #openttd
18:12:50  *** xX_Zobel_Xx has joined #openttd
18:12:50  *** TEnNIWyn has joined #openttd
18:12:50  *** xXRendzikiXx has joined #openttd
18:12:50  *** EoFoRhIrIc has joined #openttd
18:12:50  *** xXBealieliahXx has joined #openttd
18:12:50  *** xXCaSsEgUsBoNXx14 has joined #openttd
18:12:50  *** Merewinre has joined #openttd
18:12:50  *** _NcIpE_ has joined #openttd
18:12:50  *** proninusfus has joined #openttd
18:12:50  *** FRIJA has joined #openttd
18:12:50  *** Yusuposky has joined #openttd
18:12:50  *** xXHERTESFA552Xx has joined #openttd
18:12:50  *** osbeourh has joined #openttd
18:12:50  *** NUNLEE has joined #openttd
18:12:50  *** OuTrOsNhA has joined #openttd
18:12:50  *** Moritanou has joined #openttd
18:12:50  *** BEaliAHAz has joined #openttd
18:12:50  *** _xXHERTEITHRJXx_ has joined #openttd
18:12:50  *** SzCzA has joined #openttd
18:12:50  *** xXCaDfArYnXx616 has joined #openttd
18:12:50  *** xX_Gethel_Xx has joined #openttd
18:12:50  *** xXMalickiewkiXx has joined #openttd
18:12:50  *** Jalafj has joined #openttd
18:12:50  *** KADAOto has joined #openttd
18:12:50  *** Androceus has joined #openttd
18:12:50  *** xXhjalgulXx has joined #openttd
18:12:50  *** _Mangano_5 has joined #openttd
18:12:50  *** Hyledcyn has joined #openttd
18:12:50  *** Gethis has joined #openttd
18:12:50  *** Osbeoic has joined #openttd
18:12:50  *** Heremolh has joined #openttd
18:12:50  *** Mariusnus77 has joined #openttd
18:12:50  *** Stasiak has joined #openttd
18:12:50  *** INGVILDAGN has joined #openttd
18:12:50  *** Gulbdan has joined #openttd
18:12:50  *** Oohashchi has joined #openttd
18:12:50  *** eoforwinund has joined #openttd
18:12:50  *** cerysian346 has joined #openttd
18:12:50  *** Indrrr has joined #openttd
18:12:50  *** Rudinunos has joined #openttd
18:12:50  *** Ojimaidaga has joined #openttd
18:12:50  *** xXHelgaldXx543 has joined #openttd
18:12:50  *** MiStGgJ has joined #openttd
18:12:50  *** xXEyvinllXx has joined #openttd
18:12:50  *** OoTsUkDa has joined #openttd
18:12:50  *** _elosa_ has joined #openttd
18:12:50  *** HAYASHIWANO has joined #openttd
18:12:50  *** grebskak has joined #openttd
18:12:50  *** _Gwiliesen_ has joined #openttd
18:12:50  *** Aksakky has joined #openttd
18:12:50  *** EmLiNg has joined #openttd
18:12:50  *** _Lebedkov_ has joined #openttd
18:12:50  *** Godwinaed has joined #openttd
18:12:50  *** OWENYN has joined #openttd
18:12:50  *** _CEFIGAN_ has joined #openttd
18:12:50  *** xXOssasunoXx has joined #openttd
18:12:50  *** ArIsTaEs has joined #openttd
18:12:50  *** QUISTASA has joined #openttd
18:12:50  *** Kunka has joined #openttd
18:12:50  *** AUNURTA has joined #openttd
18:12:50  *** Mhildgr has joined #openttd
18:12:50  *** _TAKANAWA_ has joined #openttd
18:12:50  *** CaTilUSus has joined #openttd
18:12:50  *** Medesmas has joined #openttd
18:12:50  *** _xXquilhXx_ has joined #openttd
18:12:50  *** wuLFiALd has joined #openttd
18:12:50  *** FrAnKsLa2 has joined #openttd
18:12:50  *** sinfger has joined #openttd
18:12:50  *** KINJOEKI has joined #openttd
18:12:50  *** cons has joined #openttd
18:12:50  *** _GeiRAeR2_ has joined #openttd
18:12:50  *** Ouvinas has joined #openttd
18:12:50  *** Lograde has joined #openttd
18:12:50  *** PLICOSIS has joined #openttd
18:12:50  *** ventoer has joined #openttd
18:12:50  *** KOYAKE has joined #openttd
18:12:50  *** WAY has joined #openttd
18:12:50  *** REGULRES has joined #openttd
18:12:50  *** ARNBJSTA has joined #openttd
18:12:50  *** Branin has joined #openttd
18:12:50  *** AELFFRI has joined #openttd
18:12:50  *** Wilheardae has joined #openttd
18:12:50  *** Perceyn has joined #openttd
18:12:50  *** cidinusina has joined #openttd
18:12:50  *** xXHeliantorXx has joined #openttd
18:12:50  *** anTEnIaebE310 has joined #openttd
18:12:50  *** FrontvA has joined #openttd
18:12:50  *** THEStorMaS has joined #openttd
18:12:50  *** xXtOutATIsTaXx6 has joined #openttd
18:12:50  *** estes has joined #openttd
18:12:50  *** STUMBIGT has joined #openttd
18:12:50  *** KEETER has joined #openttd
18:12:50  *** _ChereNKa_ has joined #openttd
18:12:50  *** Winchenbach has joined #openttd
18:12:50  *** mARUdien has joined #openttd
18:12:50  *** poLANdcz has joined #openttd
18:12:50  *** Eofrri has joined #openttd
18:12:51  *** Wertic has joined #openttd
18:12:51  *** Ingsga has joined #openttd
18:12:51  *** _xXMitchemXx_ has joined #openttd
18:12:51  *** Jehiema has joined #openttd
18:12:51  *** gefjmul has joined #openttd
18:12:51  *** BEDEIN has joined #openttd
18:12:51  *** Vagnbja has joined #openttd
18:12:51  *** Burt has joined #openttd
18:12:51  *** Mulhara has joined #openttd
18:12:51  *** Prisco has joined #openttd
18:12:51  *** AVERYMOV14 has joined #openttd
18:12:51  *** ANAXILON has joined #openttd
18:12:51  *** tRaheRlyn has joined #openttd
18:12:51  *** Ecgwelalf has joined #openttd
18:12:51  *** llino has joined #openttd
18:12:51  *** GrIgTyN has joined #openttd
18:12:51  *** xXReciXx has joined #openttd
18:12:51  *** NASICINILVA has joined #openttd
18:12:51  *** xXAericuraiaXx has joined #openttd
18:12:51  *** UNFERDA has joined #openttd
18:12:51  *** RauGApTS has joined #openttd
18:12:51  *** _Artesina_964 has joined #openttd
18:12:51  *** Yamotekubo has joined #openttd
18:12:51  *** Imposto has joined #openttd
18:12:51  *** nerysrio has joined #openttd
18:12:51  *** talfrnid has joined #openttd
18:12:51  *** Jehoshnan has joined #openttd
18:12:51  *** Affydd has joined #openttd
18:12:51  *** Andromne has joined #openttd
18:12:51  *** Sipowskuk has joined #openttd
18:12:51  *** Depoem has joined #openttd
18:12:51  *** SwErTiMa has joined #openttd
18:12:51  *** Elpaliaheel has joined #openttd
18:12:51  *** ritanus has joined #openttd
18:12:51  *** Lyta has joined #openttd
18:12:51  *** xX_fitelaar_Xx has joined #openttd
18:12:51  *** Kamitsu has joined #openttd
18:12:51  *** shitawa has joined #openttd
18:12:51  *** xXynhildrllXx has joined #openttd
18:12:51  *** Canemais has joined #openttd
18:12:51  *** ADZINSZNY has joined #openttd
18:12:51  *** Godrigar has joined #openttd
18:12:51  *** Geirdlm has joined #openttd
18:12:51  *** rhoslt has joined #openttd
18:12:51  *** xXathoveiXx has joined #openttd
18:12:51  *** xXKozlovlov07Xx has joined #openttd
18:12:51  *** TOMBLIN has joined #openttd
18:12:51  *** calumag has joined #openttd
18:12:51  *** ELNAAZ has joined #openttd
18:12:51  *** Dylianael832 has joined #openttd
18:12:51  *** CoMprres has joined #openttd
18:12:51  *** Grufffin has joined #openttd
18:12:51  *** GULLVEALM has joined #openttd
18:12:51  *** helmingund has joined #openttd
18:12:51  *** Bollinger has joined #openttd
18:12:51  *** raCz has joined #openttd
18:12:51  *** popRA has joined #openttd
18:12:51  *** Undilaf has joined #openttd
18:12:51  *** _ishiya_9 has joined #openttd
18:12:51  *** CamPeIs has joined #openttd
18:12:51  *** _Loptsdi_ has joined #openttd
18:12:51  *** Kennard has joined #openttd
18:12:51  *** JERECHAM has joined #openttd
18:12:51  *** Antonreo has joined #openttd
18:12:51  *** Regulbusius has joined #openttd
18:12:51  *** Nichelson has joined #openttd
18:12:51  *** oediomes has joined #openttd
18:12:51  *** _epomia_ has joined #openttd
18:12:51  *** Cason has joined #openttd
18:12:51  *** Condarnus has joined #openttd
18:12:51  *** Winifff has joined #openttd
18:12:51  *** Setarto has joined #openttd
18:12:51  *** Jahaziak has joined #openttd
18:12:51  *** fails has joined #openttd
18:12:51  *** eysteindr has joined #openttd
18:12:51  *** Gorowskiski has joined #openttd
18:12:51  *** brosinns has joined #openttd
18:12:51  *** _Wiglafaf_ has joined #openttd
18:12:51  *** eoRn has joined #openttd
18:12:51  *** gwenhwyfon has joined #openttd
18:12:51  *** BYRLI has joined #openttd
18:12:51  *** Hagvisi has joined #openttd
18:12:51  *** Berecharlet has joined #openttd
18:12:51  *** Vespifus has joined #openttd
18:12:51  *** Jehoszar has joined #openttd
18:12:51  *** _DiOgEnIaOpA8_ has joined #openttd
18:12:51  *** RhILdrDr has joined #openttd
18:12:51  *** xXLupaichXx has joined #openttd
18:12:51  *** Leonip has joined #openttd
18:12:51  *** TAEMNHE has joined #openttd
18:12:51  *** KUmonovskY has joined #openttd
18:12:51  *** Bronena has joined #openttd
18:12:51  *** xXIonelynXx74 has joined #openttd
18:12:51  *** vandermeer has joined #openttd
18:12:51  *** Shindenden has joined #openttd
18:12:51  *** Ingsng has joined #openttd
18:12:51  *** Kitamueda has joined #openttd
18:12:51  *** mEMNUs has joined #openttd
18:12:51  *** uemurosada has joined #openttd
18:12:51  *** Rasimovsky has joined #openttd
18:12:51  *** Anaximsus has joined #openttd
18:12:51  *** xXCedrickXx84 has joined #openttd
18:12:51  *** koenig has joined #openttd
18:12:51  *** Adsullataio has joined #openttd
18:12:51  *** Beckizny has joined #openttd
18:12:51  *** TRAHERNWEN has joined #openttd
18:12:51  *** Mairwenyn has joined #openttd
18:12:51  *** Wertiing has joined #openttd
18:12:51  *** GELDOKI has joined #openttd
18:12:51  *** hoRiArA has joined #openttd
18:12:51  *** rrankj has joined #openttd
18:12:51  *** Contrevis has joined #openttd
18:12:51  *** Cribb has joined #openttd
18:12:51  *** _BuDrEwIiOr_ has joined #openttd
18:12:51  *** Elzapael has joined #openttd
18:12:51  *** Raamiiah has joined #openttd
18:12:51  *** NJORDLR has joined #openttd
18:12:51  *** SHEAZAHAZ has joined #openttd
18:12:51  *** Xenopes has joined #openttd
18:12:51  *** AzaziIah has joined #openttd
18:12:51  *** _Elfriri454_ has joined #openttd
18:12:51  *** Ohtherebeer has joined #openttd
18:12:51  *** Volaius has joined #openttd
18:12:51  *** Hirakhii has joined #openttd
18:12:51  *** Gwennees has joined #openttd
18:12:51  *** Ganteuro has joined #openttd
18:12:51  *** KaNaUhIi has joined #openttd
18:12:51  *** euRobuTIs has joined #openttd
18:12:51  *** Talfrynyn has joined #openttd
18:12:51  *** xXEFFIEXx has joined #openttd
18:12:51  *** Carwyena has joined #openttd
18:12:51  *** Indonta has joined #openttd
18:12:51  *** Gwendona has joined #openttd
18:12:51  *** Ideguoto has joined #openttd
18:12:51  *** rAchET has joined #openttd
18:12:51  *** _ARTEGUM_ has joined #openttd
18:12:51  *** _SeNtIuNuS_ has joined #openttd
18:12:51  *** Arinrov has joined #openttd
18:12:51  *** kimber has joined #openttd
18:12:51  *** Adackiski has joined #openttd
18:12:51  *** ARrIagA has joined #openttd
18:12:51  *** Gwenythdd has joined #openttd
18:12:51  *** gOLLoGU has joined #openttd
18:12:51  *** eleazma has joined #openttd
18:12:51  *** Eanmundies has joined #openttd
18:12:51  *** Heoroeca has joined #openttd
18:12:51  *** Sveifrsl has joined #openttd
18:12:51  *** mitanikaama has joined #openttd
18:12:51  *** _FrAnKfOr_ has joined #openttd
18:12:52  *** MEREREDYN has joined #openttd
18:12:52  *** IOLYWeLYN has joined #openttd
18:12:52  *** Queci has joined #openttd
18:12:52  *** xXEardelfXx has joined #openttd
18:12:52  *** Nantoeli has joined #openttd
18:12:52  *** xXPANDOLUSXx has joined #openttd
18:12:52  *** seitz has joined #openttd
18:12:52  *** LOCHYK has joined #openttd
18:12:52  *** KuCiJaN has joined #openttd
18:12:52  *** Cantwell has joined #openttd
18:12:52  *** Theseuster has joined #openttd
18:12:52  *** falec has joined #openttd
18:12:52  *** Saxnana has joined #openttd
18:12:52  *** Ingvarrkr has joined #openttd
18:12:52  *** Eadbeorar has joined #openttd
18:12:52  *** xXPovishnovXx has joined #openttd
18:12:52  *** Medved has joined #openttd
18:12:52  *** DEPOISTA has joined #openttd
18:12:52  *** demoson has joined #openttd
18:12:52  *** SuLlAwNnA has joined #openttd
18:12:52  *** MEINIRLYN has joined #openttd
18:12:52  *** geirlfr has joined #openttd
18:12:52  *** Glynned has joined #openttd
18:12:52  *** Brosingngs has joined #openttd
18:12:52  *** Llynna has joined #openttd
18:12:52  *** Vosegomnua8 has joined #openttd
18:12:52  *** Ceriolo has joined #openttd
18:12:52  *** xXceTiurAXx has joined #openttd
18:12:52  *** _tetheus_9 has joined #openttd
18:12:52  *** Cassiniero has joined #openttd
18:12:52  *** Angharalys has joined #openttd
18:12:52  *** xXHARMESEBEXx has joined #openttd
18:12:52  *** Ecgweric has joined #openttd
18:12:52  *** SaNjUaNiTa has joined #openttd
18:12:52  *** Mikol00 has joined #openttd
18:12:52  *** Demolybne has joined #openttd
18:12:52  *** xXAdesdesXx2 has joined #openttd
18:12:52  *** Gullvevi03 has joined #openttd
18:12:52  *** Adworak has joined #openttd
18:12:52  *** Brondingst has joined #openttd
18:12:52  *** ILHOSSOS has joined #openttd
18:12:52  *** _Lynicsus15_ has joined #openttd
18:12:52  *** ragnbri has joined #openttd
18:12:52  *** paStOrE has joined #openttd
18:12:52  *** fornisi has joined #openttd
18:12:52  *** _xXHennttXx_ has joined #openttd
18:12:52  *** glyniin has joined #openttd
18:12:52  *** Hangadnir has joined #openttd
18:12:52  *** gREcK has joined #openttd
18:12:52  *** xX_Llionus_Xx has joined #openttd
18:12:52  *** _SNOTGG_ has joined #openttd
18:12:52  *** BrAuTmR has joined #openttd
18:12:52  *** Tarafan has joined #openttd
18:12:52  *** Elmaine has joined #openttd
18:12:52  *** ThEnAeUs has joined #openttd
18:12:52  *** RaGnVaLnGa has joined #openttd
18:12:52  *** Larish has joined #openttd
18:12:52  *** _EPOMARUSIS_ has joined #openttd
18:12:52  *** Cribius has joined #openttd
18:12:52  *** zaRzaL has joined #openttd
18:12:52  *** Falsilhe has joined #openttd
18:12:52  *** Heancus has joined #openttd
18:12:52  *** NEmeRtrUS has joined #openttd
18:12:52  *** DaNeLf4 has joined #openttd
18:12:52  *** Brynhildrgfr has joined #openttd
18:12:52  *** covean has joined #openttd
18:12:52  *** LlInOsRtH53 has joined #openttd
18:12:52  *** VILISNH has joined #openttd
18:12:52  *** Sveinrr has joined #openttd
18:12:52  *** ScEaDaS has joined #openttd
18:12:52  *** Enriguez has joined #openttd
18:12:52  *** EURYDINI has joined #openttd
18:12:52  *** POisSEu has joined #openttd
18:12:52  *** HEIMDUL has joined #openttd
18:12:52  *** Volz has joined #openttd
18:12:52  *** Gautsing has joined #openttd
18:12:52  *** _oyagami_ has joined #openttd
18:12:52  *** GWYTHYRNA has joined #openttd
18:12:52  *** _hereus_ has joined #openttd
18:12:52  *** rhamaried has joined #openttd
18:12:52  *** TURNEY has joined #openttd
18:12:52  *** HIBBITTS has joined #openttd
18:12:52  *** KLINGEL has joined #openttd
18:12:52  *** Priceen has joined #openttd
18:12:52  *** Chasse has joined #openttd
18:12:52  *** Jehoahazda has joined #openttd
18:12:52  *** TeRNorE has joined #openttd
18:12:52  *** SZkIewiCrkA has joined #openttd
18:12:52  *** Aksyoely has joined #openttd
18:12:52  *** _sUNNGifaLd_9 has joined #openttd
18:12:52  *** xXBaimaXx has joined #openttd
18:12:52  *** Osgaae has joined #openttd
18:12:52  *** HOCKINS46 has joined #openttd
18:12:52  *** koryc has joined #openttd
18:12:52  *** svalrg has joined #openttd
18:12:52  *** Ushchov has joined #openttd
18:12:52  *** GOOSLIN has joined #openttd
18:12:52  *** eliatkim has joined #openttd
18:12:52  *** Theanno has joined #openttd
18:12:52  *** Hruntinhre has joined #openttd
18:12:52  *** Gladylisir has joined #openttd
18:12:52  *** Gladkoski has joined #openttd
18:12:52  *** ragngim has joined #openttd
18:12:52  *** Ikawahahi has joined #openttd
18:12:52  *** xXZenohusXx701 has joined #openttd
18:12:52  *** xXDeboseXx5 has joined #openttd
18:12:52  *** Heledyn has joined #openttd
18:12:52  *** Iefanrhoyr has joined #openttd
18:12:52  *** Osmunngrht has joined #openttd
18:12:52  *** elbeolf has joined #openttd
18:12:52  *** Alwynyth has joined #openttd
18:12:52  *** Waguespack has joined #openttd
18:12:52  *** Bekauta has joined #openttd
18:12:52  *** _LEUcELus_ has joined #openttd
18:12:52  *** WASNIEASZ has joined #openttd
18:12:52  *** Fullel has joined #openttd
18:12:52  *** SHEALIAIAH has joined #openttd
18:12:52  *** cirrincione has joined #openttd
18:12:52  *** Thoms has joined #openttd
18:12:52  *** Vaidadst has joined #openttd
18:12:52  *** SiGEAR has joined #openttd
18:12:52  *** ouvIoS0 has joined #openttd
18:12:52  *** Ecgbered has joined #openttd
18:12:52  *** Elzariaiah has joined #openttd
18:12:52  *** FAVA has joined #openttd
18:12:52  *** JEHOZADAKIEL has joined #openttd
18:12:52  *** experra has joined #openttd
18:12:52  *** Iolynira has joined #openttd
18:12:52  *** AgAfInOaN has joined #openttd
18:12:52  *** Elvie has joined #openttd
18:12:52  *** Eorotbel has joined #openttd
18:12:52  *** SIWAINRYS has joined #openttd
18:12:52  *** xX_CiDaS_Xx has joined #openttd
18:12:52  *** _Jurczel_ has joined #openttd
18:12:52  *** Miklaki has joined #openttd
18:12:52  *** Batres has joined #openttd
18:12:52  *** fullArId has joined #openttd
18:12:52  *** OfOrNg has joined #openttd
18:12:52  *** RUNGLEGAT has joined #openttd
18:12:52  *** Scherlas has joined #openttd
18:12:52  *** hermann has joined #openttd
18:12:52  *** _AlFrLiS_ has joined #openttd
18:12:52  *** _PIAZZA_ has joined #openttd
18:12:52  *** Lungridi has joined #openttd
18:12:52  *** _CINIUUS_37 has joined #openttd
18:12:52  *** JERAHMEEECH has joined #openttd
18:12:52  *** Archelicne has joined #openttd
18:12:52  *** xX_FOLCARD_Xx has joined #openttd
18:12:52  *** _Gricolaus7_ has joined #openttd
18:12:52  *** Smundldr has joined #openttd
18:12:52  *** xXstaniiszXx has joined #openttd
18:12:52  *** ealfdenng has joined #openttd
18:12:52  *** Stycz has joined #openttd
18:12:52  *** OFydDyd has joined #openttd
18:12:52  *** xX_Cuffie_Xx has joined #openttd
18:12:52  *** Ieuarl has joined #openttd
18:12:52  *** Icollutia has joined #openttd
18:12:52  *** ookawahni01 has joined #openttd
18:12:52  *** AUSTRA has joined #openttd
18:12:53  *** Damskiicz has joined #openttd
18:12:53  *** DaMmEyEr has joined #openttd
18:12:53  *** Broslaecg has joined #openttd
18:12:53  *** xXADACHIXx7 has joined #openttd
18:12:53  *** hugags has joined #openttd
18:12:53  *** JEHALEEAT has joined #openttd
18:12:53  *** Vipulrsk has joined #openttd
18:12:53  *** Canetoama has joined #openttd
18:12:53  *** curinus has joined #openttd
18:12:53  *** parKIaK has joined #openttd
18:12:53  *** Krzywancz has joined #openttd
18:12:53  *** Brezhabkov has joined #openttd
18:12:53  *** xXmaciockiXx has joined #openttd
18:12:53  *** armr has joined #openttd
18:12:53  *** Mihanlt has joined #openttd
18:12:53  *** _xXambusilaXx_ has joined #openttd
18:12:53  *** Neriutia has joined #openttd
18:12:53  *** PALAMoV has joined #openttd
18:12:53  *** anthipeas has joined #openttd
18:12:53  *** Kogaino has joined #openttd
18:12:53  *** xXtanabegiXx has joined #openttd
18:12:53  *** ThEtIaS has joined #openttd
18:12:53  *** dilwyus has joined #openttd
18:12:53  *** Rosso has joined #openttd
18:12:53  *** RAcHaRILEt has joined #openttd
18:12:53  *** Indorisue has joined #openttd
18:12:53  *** Orestes has joined #openttd
18:12:53  *** Golusas has joined #openttd
18:12:53  *** Fnfretr has joined #openttd
18:12:53  *** Regilliuus has joined #openttd
18:12:53  *** Heddwira has joined #openttd
18:12:53  *** holme has joined #openttd
18:12:53  *** Autroeo has joined #openttd
18:12:53  *** POPIOSikEK has joined #openttd
18:12:53  *** Phigeta has joined #openttd
18:12:53  *** HaRiDWtan has joined #openttd
18:12:53  *** Wawak has joined #openttd
18:12:53  *** Berwylla has joined #openttd
18:12:53  *** xXOlwywenXx has joined #openttd
18:12:53  *** FrEaLlR has joined #openttd
18:12:53  *** Sigmuamr has joined #openttd
18:12:53  *** _Jorge_ has joined #openttd
18:12:53  *** Hengnigr has joined #openttd
18:12:53  *** AlStEiNaFr has joined #openttd
18:12:53  *** _xXAelfhewigXx_ has joined #openttd
18:12:53  *** helginnr has joined #openttd
18:12:53  *** Gofawn has joined #openttd
18:12:53  *** UlMaNsKy59 has joined #openttd
18:12:53  *** Jungrrdr has joined #openttd
18:12:53  *** koyanno has joined #openttd
18:12:53  *** Aeth has joined #openttd
18:12:53  *** IPPOLYNMAS has joined #openttd
18:12:53  *** eOfoRAE has joined #openttd
18:12:53  *** campestrlyr has joined #openttd
18:12:53  *** Freylul has joined #openttd
18:12:53  *** Patrica has joined #openttd
18:12:53  *** GULYVIC has joined #openttd
18:12:53  *** CeRiDwEyN has joined #openttd
18:12:53  *** GWYNFOETH has joined #openttd
18:12:53  *** Niiyaizu has joined #openttd
18:12:53  *** iefanwan has joined #openttd
18:12:53  *** cAssanDRIA has joined #openttd
18:12:53  *** halgaro has joined #openttd
18:12:53  *** meinwyr has joined #openttd
18:12:53  *** Turton has joined #openttd
18:12:53  *** Ament has joined #openttd
18:12:53  *** Anneiusen has joined #openttd
18:12:53  *** AESCTAN has joined #openttd
18:12:53  *** Siorth has joined #openttd
18:12:53  *** Hefined9 has joined #openttd
18:12:53  *** _Damaches_ has joined #openttd
18:12:53  *** xX_ELNANERAM_Xx has joined #openttd
18:12:53  *** xXGRENDASXx has joined #openttd
18:12:53  *** Hobalaf has joined #openttd
18:12:53  *** Dakaawa has joined #openttd
18:12:53  *** bragrka has joined #openttd
18:12:53  *** HIAtT has joined #openttd
18:12:53  *** Aurelgus has joined #openttd
18:12:53  *** ANTOSIOS has joined #openttd
18:12:53  *** jastrebski has joined #openttd
18:12:53  *** lucicerus has joined #openttd
18:12:53  *** Inosawani has joined #openttd
18:12:53  *** DEMOLEONDER has joined #openttd
18:12:53  *** sceadugeng has joined #openttd
18:12:53  *** Aeroniol has joined #openttd
18:12:53  *** Mirabal has joined #openttd
18:12:53  *** Nehealel has joined #openttd
18:12:53  *** vest has joined #openttd
18:12:53  *** _Aksiky05_ has joined #openttd
18:12:53  *** xXTANABEUJIXx has joined #openttd
18:12:53  *** Dicepus has joined #openttd
18:12:53  *** Pickicki has joined #openttd
18:12:53  *** Royster has joined #openttd
18:12:53  *** BERENKOOV has joined #openttd
18:12:53  *** Metedra has joined #openttd
18:12:53  *** Sonoderta has joined #openttd
18:12:53  *** Elechda has joined #openttd
18:12:53  *** kluczkik has joined #openttd
18:12:53  *** NJORDULD has joined #openttd
18:12:53  *** ECGLARO has joined #openttd
18:12:53  *** _xXOsBeOrNaEXx_ has joined #openttd
18:12:53  *** sCiLlNtH17 has joined #openttd
18:12:53  *** xXMalchieleel024Xx has joined #openttd
18:12:53  *** Deiroem has joined #openttd
18:12:53  *** OlCwArO has joined #openttd
18:12:53  *** Conseos has joined #openttd
18:12:53  *** Licata has joined #openttd
18:12:53  *** Godwineric has joined #openttd
18:12:53  *** Derma has joined #openttd
18:12:53  *** bedeyerin has joined #openttd
18:12:53  *** xXLuSaRXx has joined #openttd
18:12:53  *** _allstlfr_ has joined #openttd
18:12:53  *** GWYNWR has joined #openttd
18:12:53  *** EguRaes has joined #openttd
18:12:53  *** WeOhStAnLa has joined #openttd
18:12:53  *** xXPAULSETHXx334 has joined #openttd
18:12:53  *** Solochth has joined #openttd
18:12:53  *** AESC has joined #openttd
18:12:53  *** xXgwenfrewinXx has joined #openttd
18:12:53  *** nnildr has joined #openttd
18:12:53  *** Nehemilet has joined #openttd
18:12:53  *** Winered has joined #openttd
18:12:53  *** SeRvE has joined #openttd
18:12:53  *** xXIovantucusXx has joined #openttd
18:12:53  *** xX_DELEITVI_Xx has joined #openttd
18:12:53  *** Turrey has joined #openttd
18:12:53  *** Apraksakoev has joined #openttd
18:12:53  *** SEGAWWA has joined #openttd
18:12:53  *** Grzebita has joined #openttd
18:12:53  *** RimuLISt has joined #openttd
18:12:53  *** CEFINRA has joined #openttd
18:12:53  *** ScIlLiOpEuS has joined #openttd
18:12:53  *** Vossarsse has joined #openttd
18:12:53  *** Rabassz has joined #openttd
18:12:53  *** Kimpel has joined #openttd
18:12:53  *** Lapointe has joined #openttd
18:12:53  *** anAnEan has joined #openttd
18:12:53  *** Mereddybon has joined #openttd
18:12:53  *** Bratton has joined #openttd
18:12:53  *** Frumveni has joined #openttd
18:12:53  *** TUGUMOS has joined #openttd
18:12:53  *** CATULLUUS has joined #openttd
18:12:53  *** Maisto has joined #openttd
18:12:53  *** Dagfirri has joined #openttd
18:12:53  *** Randbj has joined #openttd
18:12:53  *** IFIOYS has joined #openttd
18:12:53  *** _GiLdElD_56 has joined #openttd
18:12:53  *** Raamiahlet has joined #openttd
18:12:53  *** ALEGVER has joined #openttd
18:12:53  *** xXAristoraXx6 has joined #openttd
18:12:53  *** Allbee has joined #openttd
18:12:53  *** xX_Sceadeca_Xx has joined #openttd
18:12:53  *** HERJAN has joined #openttd
18:12:53  *** _TRAHAEXEN_ has joined #openttd
18:12:53  *** arkHIKOV has joined #openttd
18:12:53  *** Eliasaphaph has joined #openttd
18:12:53  *** AePiUs has joined #openttd
18:12:53  *** INGVILDFN has joined #openttd
18:12:54  *** jehananada has joined #openttd
18:12:54  *** _erICsOn_51 has joined #openttd
18:12:54  *** Ideguchiata has joined #openttd
18:12:54  *** Penarduius has joined #openttd
18:12:54  *** Swonger has joined #openttd
18:12:54  *** MeRlIrCh has joined #openttd
18:12:54  *** tTInNiNn has joined #openttd
18:12:54  *** Roburis has joined #openttd
18:12:54  *** Scruggs has joined #openttd
18:12:54  *** Hazamata has joined #openttd
18:12:54  *** Cevaughwen has joined #openttd
18:12:54  *** SIgMuDUL has joined #openttd
18:12:54  *** ToDoSiS has joined #openttd
18:12:54  *** JoThZaR has joined #openttd
18:12:54  *** MeRfYeN has joined #openttd
18:12:54  *** gLADYsgED has joined #openttd
18:12:54  *** HEMINGSRE has joined #openttd
18:12:54  *** Llewena has joined #openttd
18:12:54  *** betharadod817 has joined #openttd
18:12:54  *** eardgar has joined #openttd
18:12:54  *** Malleiupio has joined #openttd
18:12:54  *** _SKEGGJYJA_ has joined #openttd
18:12:54  *** Einirlyn has joined #openttd
18:12:54  *** Nicanor has joined #openttd
18:12:54  *** _xXKondrorzXx_ has joined #openttd
18:12:54  *** inGThoGg has joined #openttd
18:12:54  *** ZUBOTININ has joined #openttd
18:12:54  *** Klewiej has joined #openttd
18:12:54  *** Rsteinn has joined #openttd
18:12:54  *** Myrtle4 has joined #openttd
18:12:54  *** xXMikiNaiKXx has joined #openttd
18:12:54  *** CURViLIUS has joined #openttd
18:12:54  *** KEETON has joined #openttd
18:12:54  *** FRANTZ has joined #openttd
18:12:54  *** MACNEIL has joined #openttd
18:12:54  *** brynhinn has joined #openttd
18:12:54  *** Ginnvi has joined #openttd
18:12:54  *** _xXHyleriXx_ has joined #openttd
18:12:54  *** Borvo has joined #openttd
18:12:54  *** Hristfj has joined #openttd
18:12:54  *** siggand has joined #openttd
18:12:54  *** Rethaalm605 has joined #openttd
18:12:54  *** hafgANTtiA has joined #openttd
18:12:54  *** cainGwer has joined #openttd
18:12:54  *** _hugaing_ has joined #openttd
18:12:54  *** Skilfrr has joined #openttd
18:12:54  *** Asawamuama has joined #openttd
18:12:54  *** EADBURGFRI has joined #openttd
18:12:54  *** xXHachtingXx has joined #openttd
18:12:54  *** SUKHKY has joined #openttd
18:12:54  *** Jernigan has joined #openttd
18:12:54  *** UNTIN has joined #openttd
18:12:54  *** presocia has joined #openttd
18:12:54  *** _FREAWAAF_ has joined #openttd
18:12:54  *** TRELNILOV has joined #openttd
18:12:54  *** Seneposula has joined #openttd
18:12:54  *** BrAdIsH has joined #openttd
18:12:54  *** _Eiriayn78_ has joined #openttd
18:12:54  *** fullnul has joined #openttd
18:12:54  *** xX_AbilD_Xx has joined #openttd
18:12:54  *** _EURYMACHUES_ has joined #openttd
18:12:54  *** Agimokov has joined #openttd
18:12:54  *** xXLlewenfran118Xx has joined #openttd
18:12:54  *** Frodanesng has joined #openttd
18:12:54  *** GUARDADAR has joined #openttd
18:12:54  *** MundINGINg has joined #openttd
18:12:54  *** TaRaNhUs has joined #openttd
18:12:54  *** Usar has joined #openttd
18:12:54  *** niSIeEtH has joined #openttd
18:12:54  *** _platoas_855 has joined #openttd
18:12:54  *** Zubotiky has joined #openttd
18:12:54  *** lendr has joined #openttd
18:12:54  *** forsega has joined #openttd
18:12:54  *** bertowcki has joined #openttd
18:12:54  *** Fitelaow has joined #openttd
18:12:54  *** cicuriusus has joined #openttd
18:12:54  *** xXARVeRNsusXx has joined #openttd
18:12:54  *** Kroon151 has joined #openttd
18:12:54  *** quelde has joined #openttd
18:12:54  *** kANaUCHISu has joined #openttd
18:12:54  *** annETte has joined #openttd
18:12:54  *** xXRbarjaXx has joined #openttd
18:12:54  *** _Heremodel_2 has joined #openttd
18:12:54  *** jehdielet has joined #openttd
18:12:54  *** Randgriir has joined #openttd
18:12:54  *** Pellegrini has joined #openttd
18:12:54  *** Conhe274 has joined #openttd
18:12:54  *** Erleifrrfr has joined #openttd
18:12:54  *** xXTeas2Xx has joined #openttd
18:12:54  *** Tanimoeki has joined #openttd
18:12:54  *** xXHARMOIAXx has joined #openttd
18:12:54  *** callithe has joined #openttd
18:12:54  *** AlExAeTo has joined #openttd
18:12:54  *** caeliusito has joined #openttd
18:12:54  *** Osberlda has joined #openttd
18:12:54  *** kulewicz has joined #openttd
18:12:54  *** gAretys has joined #openttd
18:12:54  *** Europpa has joined #openttd
18:12:54  *** AERONRON has joined #openttd
18:12:54  <frosch123> @mode +m
18:12:54  *** DorpsGek sets mode: +m 
18:12:54  *** _xXAphRotRaXx_ has joined #openttd
18:12:54  *** Ghrefnng has joined #openttd
18:12:54  *** _xXUntingheaXx_ has joined #openttd
18:12:56  *** Aksakosky has joined #openttd
18:12:56  *** Maez has joined #openttd
18:12:57  *** LaNeTaIcA has joined #openttd
18:12:57  *** WeYmOuTh has joined #openttd
18:12:57  *** Sullasin has joined #openttd
18:12:58  *** LHASTRA has joined #openttd
18:12:59  *** BRYNJARLDR has joined #openttd
18:13:00  *** LOPES6 has joined #openttd
18:13:00  *** Ndingat has joined #openttd
18:13:05  *** _Fraered29_ has joined #openttd
18:13:05  *** Iestynen has joined #openttd
18:13:06  *** Wealhred has joined #openttd
18:13:10  *** llstrg has joined #openttd
18:13:15  *** DorpsGek sets mode: +m 
18:13:16  *** GuTTMaN has joined #openttd
18:13:17  *** AELFGIFRHT has joined #openttd
18:13:20  *** Aelredry has joined #openttd
18:13:21  *** LYTARCHUS has joined #openttd
18:13:21  *** nakashata has joined #openttd
18:13:25  *** GUNNAGIR has joined #openttd
18:13:27  *** osMundGY2 has joined #openttd
18:13:36  *** xXFrIgGsKjXx65 has joined #openttd
18:13:36  *** HiPpOlYbDeS has joined #openttd
18:13:39  *** Rhianwi has joined #openttd
18:13:39  *** BuTr has joined #openttd
18:13:43  *** xXHiRaisRAXx has joined #openttd
18:13:48  *** Callicaoano has joined #openttd
18:13:48  *** EIRIAEN has joined #openttd
18:13:49  *** Nakashnya has joined #openttd
18:13:50  *** KLARE has joined #openttd
18:13:52  *** Riganeta has joined #openttd
18:13:55  *** _Janiki108_ has joined #openttd
18:13:56  *** ESTESDE has joined #openttd
18:13:56  *** AFANDROV has joined #openttd
18:13:56  *** xXKishitakaXx4 has joined #openttd
18:13:56  *** RANDGLD has joined #openttd
18:13:56  *** Llewelynvyn has joined #openttd
18:13:56  *** Ingvaldr has joined #openttd
18:13:56  *** _Vergiius6_ has joined #openttd
18:13:56  *** Healgang has joined #openttd
18:13:56  *** xXGEIRTLI81Xx has joined #openttd
18:13:56  *** Amariahel has joined #openttd
18:13:56  *** akaya has joined #openttd
18:13:56  *** Svaragu has joined #openttd
18:13:56  *** Aranrhyn has joined #openttd
18:13:56  *** _Abatsuata_ has joined #openttd
18:13:56  *** MALDWYNDD has joined #openttd
18:13:56  *** Lobel has joined #openttd
18:13:56  *** ampestrta has joined #openttd
18:13:56  *** Zkarska has joined #openttd
18:13:56  *** Orowre has joined #openttd
18:13:57  *** CORTAQUE has joined #openttd
18:13:57  *** xXsonoXx has joined #openttd
18:13:57  *** _Sempmas35_ has joined #openttd
18:13:57  *** Sigmuirr has joined #openttd
18:13:57  *** Llisolo has joined #openttd
18:13:57  *** Rhamaxensin has joined #openttd
18:13:57  *** xXHallskiXx21 has joined #openttd
18:13:57  *** xX_Barahmed_Xx has joined #openttd
18:13:57  *** Elfrgy has joined #openttd
18:13:57  *** GUNNNGR has joined #openttd
18:13:57  *** HASEWA has joined #openttd
18:13:57  *** hatfield has joined #openttd
18:13:57  *** xXRutiniusXx has joined #openttd
18:13:57  *** xXKoUyAnIi7Xx has joined #openttd
18:13:57  *** Jeremiama has joined #openttd
18:13:57  *** AFANASOV has joined #openttd
18:13:57  *** _eRiUsus87_ has joined #openttd
18:13:57  *** kruzelcki has joined #openttd
18:13:57  *** Oediomeam has joined #openttd
18:13:57  *** _BELeNOba_ has joined #openttd
18:13:57  *** HeNgGgR641 has joined #openttd
18:13:57  *** broome has joined #openttd
18:13:57  *** _Diomeddes_ has joined #openttd
18:13:57  *** Aradogan has joined #openttd
18:13:57  *** Archenus has joined #openttd
18:13:57  *** GESTNH has joined #openttd
18:13:57  *** EOROGNG has joined #openttd
18:13:57  *** Hamlin has joined #openttd
18:13:57  *** CyNeBfRi has joined #openttd
18:13:57  *** TROSZ has joined #openttd
18:13:57  *** NeMeToNsIn has joined #openttd
18:13:57  *** Arngvi has joined #openttd
18:13:57  *** Partem has joined #openttd
18:13:57  *** quANDAvaELE has joined #openttd
18:13:57  *** Nehealiah has joined #openttd
18:13:57  *** Danesefn has joined #openttd
18:13:57  *** Nasiciusius has joined #openttd
18:13:57  *** Hariasaerv177 has joined #openttd
18:13:57  *** xXEadweredXx has joined #openttd
18:13:57  *** Scyldiela has joined #openttd
18:13:57  *** pulvillusso has joined #openttd
18:13:57  *** Siwaned has joined #openttd
18:13:57  *** HaMaInN has joined #openttd
18:13:57  *** SUnNunuL has joined #openttd
18:13:58  *** Kotowsra has joined #openttd
18:13:58  *** Cadwenwyn has joined #openttd
18:13:58  *** SIGRIRR has joined #openttd
18:13:58  *** Dorn has joined #openttd
18:13:58  *** xX_FFITHERYS_Xx has joined #openttd
18:13:58  *** _Garmunen_559 has joined #openttd
18:13:58  *** mIsiaNik939 has joined #openttd
18:13:58  *** xX_Khrusupin_Xx has joined #openttd
18:13:58  *** Aelfrird77 has joined #openttd
18:13:58  *** Semiar has joined #openttd
18:13:58  *** xXSOKoLoviNXx279 has joined #openttd
18:13:58  *** crinthle has joined #openttd
18:13:58  *** Elecech has joined #openttd
18:13:58  *** Shimotoni has joined #openttd
18:13:58  *** Kumonovyev has joined #openttd
18:13:58  *** StRiNgHaM has joined #openttd
18:13:58  *** CiCOLlUISANA has joined #openttd
18:13:58  *** Vediusllo has joined #openttd
18:13:58  *** xXCelot5Xx has joined #openttd
18:13:58  *** xXBrynjarndrXx740 has joined #openttd
18:13:58  *** GaNdRlL has joined #openttd
18:13:58  *** _awailed_ has joined #openttd
18:13:58  *** OSWALNE has joined #openttd
18:13:58  *** IULIVIIA has joined #openttd
18:13:58  *** Pedaedalus has joined #openttd
18:13:58  *** SIORONA has joined #openttd
18:13:58  *** xXAranisibonXx has joined #openttd
18:13:58  *** xXCzypiecczXx has joined #openttd
18:13:58  *** jacklyn has joined #openttd
18:13:58  *** OSBEORRI has joined #openttd
18:13:58  *** Vejas has joined #openttd
18:13:58  *** Sanoura has joined #openttd
18:13:58  *** akumin has joined #openttd
18:13:59  *** pAlinSkICKi has joined #openttd
18:13:59  *** _Pitul_525 has joined #openttd
18:13:59  *** xXVishevXx has joined #openttd
18:13:59  *** _GlInGlAn_ has joined #openttd
18:13:59  *** MEiLIdR has joined #openttd
18:13:59  *** Galeona has joined #openttd
18:13:59  *** mEDeahe has joined #openttd
18:13:59  *** _ANrhoDWYn_ has joined #openttd
18:13:59  *** Fortdas has joined #openttd
18:13:59  *** _mainoue16_ has joined #openttd
18:13:59  *** SaWyLeDdEd has joined #openttd
18:13:59  *** Essis has joined #openttd
18:13:59  *** xXbubuteiusXx has joined #openttd
18:13:59  *** GWENWY has joined #openttd
18:13:59  *** Maty has joined #openttd
18:13:59  *** Jouonhi has joined #openttd
18:13:59  *** MINIUSNDA has joined #openttd
18:13:59  *** BLODHEL has joined #openttd
18:13:59  *** Arguno has joined #openttd
18:13:59  *** _xXOiDeIoXx_ has joined #openttd
18:13:59  *** MeReWiOiUnD has joined #openttd
18:13:59  *** _cORNeCauS581_ has joined #openttd
18:13:59  *** BeDevyev has joined #openttd
18:13:59  *** Aelfgaan has joined #openttd
18:13:59  *** Anosoano has joined #openttd
18:13:59  *** Braitheona has joined #openttd
18:13:59  *** apolliod has joined #openttd
18:13:59  *** Lovyovets has joined #openttd
18:13:59  *** valdnnr has joined #openttd
18:13:59  *** Cradle has joined #openttd
18:13:59  *** Anwenwan has joined #openttd
18:13:59  *** Aguchita has joined #openttd
18:13:59  *** merediverrin has joined #openttd
18:13:59  *** Coffell has joined #openttd
18:13:59  *** Paczy has joined #openttd
18:13:59  *** Nasiclo has joined #openttd
18:13:59  *** Chech has joined #openttd
18:13:59  *** xXLuCiLuSXx has joined #openttd
18:13:59  *** sextiuspio has joined #openttd
18:13:59  *** Renniuslo has joined #openttd
18:13:59  *** Eyvinifr has joined #openttd
18:13:59  *** FuRiO has joined #openttd
18:13:59  *** Heoroulf has joined #openttd
18:14:00  *** xX_AUTIUVEIUS_Xx has joined #openttd
18:14:00  *** Sigfndr has joined #openttd
18:14:01  *** xXSigynnfjXx has joined #openttd
18:14:02  *** Beowulgif has joined #openttd
18:14:02  *** WULFDEUND has joined #openttd
18:14:03  *** kITajhi has joined #openttd
18:14:20  *** DorpsGek sets mode: +i 
18:14:23  *** Alberth has left #openttd
18:14:44  *** frosch123 has left #openttd
18:14:46  *** dpk has quit IRC
18:15:00  *** andythenorth has quit IRC
18:15:00  *** Wolf01 has left #openttd
18:15:14  *** HerzogDeXtEr has quit IRC
18:15:22  *** KLARE has quit IRC
18:15:42  *** freyjardr has quit IRC
18:16:03  *** Elzariaiah has quit IRC
18:16:12  *** Gja has quit IRC
18:16:22  *** ArCiNtHnIa has quit IRC
18:16:43  *** Progman has left #openttd
18:16:57  <glx> oh nice dcc flood
18:17:22  *** Wealhred has quit IRC
18:17:38  *** Eddi|zuHause has quit IRC
18:18:32  *** cAssanDRIA has quit IRC
18:19:44  *** Fitelaow has quit IRC
18:19:49  *** xXAericuraiaXx has quit IRC
18:20:01  *** Sigfndr has quit IRC
18:20:04  *** Osberlda has quit IRC
18:20:08  *** maciozo has quit IRC
18:20:10  *** glx has quit IRC
18:20:20  *** kANaUCHISu has quit IRC
18:20:30  *** ^Spike^ has left #openttd
18:20:30  *** tokai|noir is now known as tokai|flx
18:20:34  *** Contrevis has quit IRC
18:20:38  *** _xXOiDeIoXx_ has quit IRC
18:20:46  *** Raamiiah has quit IRC
18:20:46  *** planetmaker sets mode: +p 
18:20:46  *** TheIJ has quit IRC
18:20:50  *** Pellegrini has quit IRC
18:20:50  *** xXstaniiszXx has quit IRC
18:20:52  *** NEmeRtrUS has quit IRC
18:20:52  *** Bekauta has quit IRC
18:20:52  *** Sonoderta has quit IRC
18:20:52  *** Frumveni has quit IRC
18:20:52  *** Bratton has quit IRC
18:20:55  *** uemurosada has quit IRC
18:20:55  *** Jernigan has quit IRC
18:20:55  *** Indorisue has quit IRC
18:20:55  *** _xXambusilaXx_ has quit IRC
18:20:55  *** Mihanlt has quit IRC
18:20:55  *** AUSTRA has quit IRC
18:20:55  *** Wertiing has quit IRC
18:20:55  *** Gwennees has quit IRC
18:20:55  *** TURNEY has quit IRC
18:20:55  *** Scherlas has quit IRC
18:20:55  *** Elvie has quit IRC
18:20:55  *** bertowcki has quit IRC
18:20:57  *** MACNEIL has quit IRC
18:20:57  *** Temerum has quit IRC
18:20:59  *** Beowulgif has quit IRC
18:21:01  *** Compu has quit IRC
18:21:10  *** kITajhi has quit IRC
18:21:12  *** guru3 has left #openttd
18:21:22  *** AELFGIFRHT has quit IRC
18:21:27  *** TRELNILOV has quit IRC
18:21:33  *** behalebabo has quit IRC
18:21:35  *** SIWAINRYS has quit IRC
18:21:40  *** _Janiki108_ has quit IRC
18:21:42  *** Rhianwi has quit IRC
18:21:50  *** Nakashnya has quit IRC
18:22:00  *** OSBEORRI has quit IRC
18:22:00  *** Tanimoeki has quit IRC
18:22:00  *** AlStEiNaFr has quit IRC
18:22:00  *** _mainoue16_ has quit IRC
18:22:02  *** MeReWiOiUnD has quit IRC
18:22:02  *** AzaziIah has quit IRC
18:22:02  *** Nantoeli has quit IRC
18:22:02  *** xX_CiDaS_Xx has quit IRC
18:22:02  *** xX_AUTIUVEIUS_Xx has quit IRC
18:22:02  *** Royster has quit IRC
18:22:02  *** Riganeta has quit IRC
18:22:12  *** debdog has quit IRC
18:22:14  *** theholyduck has left #openttd
18:22:17  *** HIBBITTS has quit IRC
18:22:17  *** Cursarion has quit IRC
18:22:27  *** LHASTRA has quit IRC
18:22:30  *** _Elfriri454_ has quit IRC
18:22:32  *** _xXUntingheaXx_ has quit IRC
18:22:32  *** LaNeTaIcA has quit IRC
18:22:35  *** Rasimovsky has quit IRC
18:22:35  *** Ndingat has quit IRC
18:22:35  *** callithe has quit IRC
18:22:38  *** planetmaker sets mode: +cne +g!*@*
18:22:40  *** xX_FOLCARD_Xx has quit IRC
18:22:45  *** xXADACHIXx7 has quit IRC
18:22:45  *** AESC has quit IRC
18:22:46  *** Aksakosky has quit IRC
18:22:49  *** Ideguchiata has quit IRC
18:22:50  *** Broslaecg has quit IRC
18:22:50  *** _Gricolaus7_ has quit IRC
18:22:52  *** Lovyovets has quit IRC
18:22:57  *** Sullasin has quit IRC
18:22:57  *** GUNNAGIR has quit IRC
18:23:00  *** holme has quit IRC
18:23:02  *** _epomia_ has quit IRC
18:23:02  *** Lapointe has quit IRC
18:23:02  *** ICOVELLAUES has quit IRC
18:23:10  *** Aelredry has quit IRC
18:23:12  *** SaNjUaNiTa has quit IRC
18:23:12  *** FRANTZ has quit IRC
18:23:24  *** AlExAeTo has quit IRC
18:23:26  *** Myhorta has quit IRC
18:23:28  *** xXHiRaisRAXx has quit IRC
18:23:30  *** OFydDyd has quit IRC
18:23:30  *** NJORDLR has quit IRC
18:23:31  *** Heancus has quit IRC
18:23:32  *** xX_DELEITVI_Xx has quit IRC
18:23:32  *** ARrIagA has quit IRC
18:23:35  *** _SKEGGJYJA_ has quit IRC
18:23:36  *** Iolynira has quit IRC
18:23:37  *** SiGEAR has quit IRC
18:23:37  *** nakashata has quit IRC
18:23:38  *** Maez has quit IRC
18:23:39  *** BuTr has quit IRC
18:23:40  *** koyanno has quit IRC
18:23:42  *** Ecgweric has quit IRC
18:23:42  *** Gwendona has quit IRC
18:23:45  *** osMundGY2 has quit IRC
18:23:46  *** kimber has quit IRC
18:23:51  *** EIRIAEN has quit IRC
18:23:55  *** UNTIN has quit IRC
18:23:57  *** merediverrin has quit IRC
18:23:59  *** Jouonhi has quit IRC
18:23:59  *** WULFDEUND has quit IRC
18:24:02  *** curinus has quit IRC
18:24:02  *** _xXHyleriXx_ has quit IRC
18:24:05  *** Aeth has quit IRC
18:24:05  *** _xXAelfhewigXx_ has quit IRC
18:24:09  *** Smundldr has quit IRC
18:24:10  *** Conhe274 has quit IRC
18:24:11  *** IPPOLYNMAS has quit IRC
18:24:11  *** Erleifrrfr has quit IRC
18:24:19  *** Aelfgaan has quit IRC
18:24:20  *** pAlinSkICKi has quit IRC
18:24:20  *** Ghrefnng has quit IRC
18:24:21  *** _BuDrEwIiOr_ has quit IRC
18:24:35  *** _Heremodel_2 has quit IRC
18:24:36  *** quelde has quit IRC
18:24:36  *** Vespifus has quit IRC
18:24:37  *** KLINGEL has quit IRC
18:24:37  *** GuTTMaN has quit IRC
18:24:38  *** xXFrIgGsKjXx65 has quit IRC
18:24:38  *** APTX has quit IRC
18:24:38  *** mescalito has quit IRC
18:24:45  *** gREcK has quit IRC
18:24:46  *** _LEUcELus_ has quit IRC
18:24:48  *** HiPpOlYbDeS has quit IRC
18:24:50  *** BRYNJARLDR has quit IRC
18:24:50  *** yorick has quit IRC
18:24:52  *** Angharalys has quit IRC
18:24:54  *** xXHARMOIAXx has quit IRC
18:24:56  *** Essis has quit IRC
18:24:58  *** _xXAphRotRaXx_ has quit IRC
18:24:58  *** kulewicz has quit IRC
18:25:00  *** cirrincione has quit IRC
18:25:03  *** Iestynen has quit IRC
18:25:08  *** OfOrNg has quit IRC
18:25:21  *** Europpa has quit IRC
18:25:26  *** parKIaK has quit IRC
18:25:26  *** GWYNFOETH has quit IRC
18:25:29  *** AERONRON has quit IRC
18:25:35  *** _Fraered29_ has quit IRC
18:25:36  *** SZKUSKI has quit IRC
18:25:36  *** gAretys has quit IRC
18:25:39  *** LOPES6 has quit IRC
18:25:42  *** Kroon151 has quit IRC
18:25:42  *** anAnEan has quit IRC
18:25:42  *** aard has left #openttd
18:25:46  *** LYTARCHUS has quit IRC
18:25:46  *** Callicaoano has quit IRC
18:25:46  *** planetmaker sets mode: +p 
18:25:46  *** xXAristoraXx6 has quit IRC
18:25:48  *** llstrg has quit IRC
18:25:52  *** GAGARISTOKOV has quit IRC
18:25:52  *** Androceus has quit IRC
18:27:29  *** NGC3982 has quit IRC
18:27:31  *** drafts has quit IRC
18:28:03  *** frosch123 has joined #openttd
18:28:14  *** frosch123 has quit IRC
18:28:35  *** Sylf has left #openttd
18:29:06  *** Setarto has quit IRC
18:30:36  *** Arveen has quit IRC
18:30:56  *** Wormnest has quit IRC
18:30:58  *** Biolunar has quit IRC
18:32:02  *** proninusfus has quit IRC
18:32:24  *** planetmaker sets mode: -p 
18:33:38  *** Aliesidd has quit IRC
18:33:44  *** _EPOMARUSIS_ has quit IRC
18:36:40  *** Anneiusen has quit IRC
18:36:40  *** Niiyaizu has quit IRC
18:40:08  *** xXHelgaldXx543 has quit IRC
18:40:08  *** xXHARMESEBEXx has quit IRC
18:40:12  *** _Abatsuata_ has quit IRC
18:40:20  *** Dagfinnfr has quit IRC
18:40:31  *** Gladkoski has quit IRC
18:40:35  *** Cribb has quit IRC
18:40:35  *** _xXKondrorzXx_ has quit IRC
18:40:39  *** Kunka has quit IRC
18:40:43  *** TROSZ has quit IRC
18:40:52  *** GaSaHtA has quit IRC
18:40:58  *** Mizuno has quit IRC
18:40:58  *** Godwiro has quit IRC
18:41:02  *** xXCICOLLSUSXx has quit IRC
18:41:06  *** Wawak has quit IRC
18:41:06  *** _CEFIGAN_ has quit IRC
18:41:15  *** _Diomeddes_ has quit IRC
18:41:15  *** ouvIoS0 has quit IRC
18:41:15  *** Dagfirri has quit IRC
18:41:20  *** xXTeas2Xx has quit IRC
18:41:23  *** _elreweae_33 has quit IRC
18:41:33  *** Vossarsse has quit IRC
18:41:38  *** xXLuSaRXx has quit IRC
18:41:42  *** THEStorMaS has quit IRC
18:41:50  *** Andraia has quit IRC
18:42:04  *** xXtanabegiXx has quit IRC
18:42:08  *** Hosoka has quit IRC
18:42:08  *** xX_veram_Xx has quit IRC
18:42:13  *** Gautsing has quit IRC
18:42:17  *** _GlInGlAn_ has quit IRC
18:42:17  *** Mirabal has quit IRC
18:42:17  *** xX_ELNANERAM_Xx has quit IRC
18:42:17  *** Jungrrdr has quit IRC
18:42:17  *** Metedra has quit IRC
18:42:21  *** Rudinunos has quit IRC
18:42:21  *** FLHerne has quit IRC
18:42:25  *** xXFItElaIOXx901 has quit IRC
18:42:25  *** mIsiaNik939 has quit IRC
18:42:25  *** RUdiAna has quit IRC
18:42:26  *** Calviuius has quit IRC
18:42:26  *** QUISTASA has quit IRC
18:42:26  *** Pickicki has quit IRC
18:42:30  *** Orowre has quit IRC
18:42:36  *** Arka has quit IRC
18:42:40  *** SIORONA has quit IRC
18:42:40  *** OlCwArO has quit IRC
18:42:44  *** Eadwinae has quit IRC
18:42:44  *** Beksaara has quit IRC
18:42:48  *** Rethaalm605 has quit IRC
18:42:52  *** ESTESDE has quit IRC
18:42:52  *** eormenles has quit IRC
18:42:56  *** LAZYNASZ has quit IRC
18:43:01  *** Zenone has quit IRC
18:43:09  *** _TAKANAWA_ has quit IRC
18:43:09  *** Cullana has quit IRC
18:43:11  *** Schepker has quit IRC
18:43:15  *** meinwyr has quit IRC
18:43:19  *** _xXSigtryggrekkXx_ has quit IRC
18:43:19  *** Ingsga has quit IRC
18:43:20  *** xXEFFIEXx has quit IRC
18:43:23  *** popRA has quit IRC
18:43:24  *** Nehealel has quit IRC
18:43:28  *** _xXRvalrrXx_ has quit IRC
18:43:32  *** Petrogiov has quit IRC
18:43:36  *** brosinns has quit IRC
18:43:36  *** _Damaches_ has quit IRC
18:43:36  *** nerysrio has quit IRC
18:43:36  *** xXWarchuki407Xx has quit IRC
18:43:36  *** poLANdcz has quit IRC
18:43:36  *** Anosoano has quit IRC
18:43:40  *** Scruggs has quit IRC
18:43:41  *** _MYRGJLJ_330 has quit IRC
18:43:43  *** LlInOsRtH53 has quit IRC
18:43:46  *** helmingund has quit IRC
18:43:46  *** elbeolf has quit IRC
18:43:51  *** xXPovishnovXx has quit IRC
18:43:55  *** Sipowskuk has quit IRC
18:43:55  *** Ecgbered has quit IRC
18:43:59  *** eardgar has quit IRC
18:44:03  *** HASEWA has quit IRC
18:44:03  *** Ushchov has quit IRC
18:44:07  *** Gofawn has quit IRC
18:44:07  *** Anaximsus has quit IRC
18:44:07  *** Mereddybon has quit IRC
18:44:16  *** TAEMNHE has quit IRC
18:44:16  *** GULYVIC has quit IRC
18:44:16  *** HeNgGgR641 has quit IRC
18:44:16  *** Vagnbja has quit IRC
18:44:16  *** Nicanor has quit IRC
18:44:18  *** cainGwer has quit IRC
18:44:18  *** Ginnvi has quit IRC
18:44:18  *** Partem has quit IRC
18:44:18  *** betharadod817 has quit IRC
18:44:22  *** xXEardelfXx has quit IRC
18:44:26  *** Rrangigu has quit IRC
18:44:26  *** itaharase360 has quit IRC
18:44:26  *** AgEnOeR has quit IRC
18:44:30  *** Cadwenwyn has quit IRC
18:44:30  *** Einirlyn has quit IRC
18:44:34  *** RUNGLEGAT has quit IRC
18:44:34  *** Eyvinifr has quit IRC
18:44:39  *** Bari has quit IRC
18:44:39  *** Cantwell has quit IRC
18:44:39  *** vest has quit IRC
18:44:49  *** GrIgTyN has quit IRC
18:44:49  *** PALAMoV has quit IRC
18:44:49  *** Svanhilrir has quit IRC
18:44:49  *** Llynna has quit IRC
18:44:53  *** AELFFRI has quit IRC
18:44:57  *** weohstanif has quit IRC
18:44:57  *** Ergljarr has quit IRC
18:44:58  *** EXUM has quit IRC
18:44:58  *** Ynhildrun has quit IRC
18:44:58  *** hectores has quit IRC
18:45:01  *** Atepomia has quit IRC
18:45:01  *** JeDiDiM has quit IRC
18:45:01  *** Osmunar has quit IRC
18:45:02  *** ANTOSIOS has quit IRC
18:45:02  *** ZUBOTININ has quit IRC
18:45:06  *** Soberor has quit IRC
18:45:06  *** Khrusupogov has quit IRC
18:45:06  *** Hengnigr has quit IRC
18:45:10  *** jastrebski has quit IRC
18:45:10  *** Coffell has quit IRC
18:45:14  *** pontiu has quit IRC
18:45:15  *** Klewiej has quit IRC
18:45:20  *** Malach has quit IRC
18:45:23  *** mEMNUs has quit IRC
18:45:24  *** xX_Biryukovsky_Xx has quit IRC
18:45:25  *** Hamlin has quit IRC
18:45:26  *** kode54 has quit IRC
18:45:29  *** MEiLIdR has quit IRC
18:45:29  *** PLICOSIS has quit IRC
18:45:29  *** _xXOsBeOrNaEXx_ has quit IRC
18:45:33  *** _WHEAT_ has quit IRC
18:45:33  *** HoUdOuSaI has quit IRC
18:45:33  *** ALEGVER has quit IRC
18:45:37  *** oWSKi has quit IRC
18:45:37  *** Elwinfriund has quit IRC
18:45:37  *** Coward has quit IRC
18:45:37  *** HaRiDWtan has quit IRC
18:45:37  *** Sigmuirr has quit IRC
18:45:41  *** xX_SUNNGIAE_Xx has quit IRC
18:45:41  *** xXPiesiolaXx has quit IRC
18:45:45  *** skilfinn has quit IRC
18:45:45  *** Svaragu has quit IRC
18:45:46  *** Amariahel has quit IRC
18:45:50  *** tRaheRlyn has quit IRC
18:45:50  *** quANDAvaELE has quit IRC
18:45:55  *** _cerrfan_5 has quit IRC
18:45:57  *** Philones has quit IRC
18:45:58  *** Deinifin has quit IRC
18:45:58  *** GUARDADAR has quit IRC
18:45:58  *** Sabatelli has quit IRC
18:45:58  *** xXzhukovrovXx4 has quit IRC
18:46:01  *** arkHIKOV has quit IRC
18:46:04  *** Fnfretr has quit IRC
18:46:04  *** Godwinaed has quit IRC
18:46:08  *** Ingvaldrfr has quit IRC
18:46:13  *** _VASTARDIS_ has quit IRC
18:46:17  *** Aeroniol has quit IRC
18:46:17  *** SHEALIAIAH has quit IRC
18:46:17  *** fullArId has quit IRC
18:46:17  *** Cradle has quit IRC
18:46:28  *** Theseuster has quit IRC
18:46:32  *** ElBeOfOfU has quit IRC
18:46:32  *** Trahefor has quit IRC
18:46:32  *** Malakovrov has quit IRC
18:46:36  *** INGVILDAGN has quit IRC
18:46:36  *** xX_Cuffie_Xx has quit IRC
18:46:36  *** cicuriusus has quit IRC
18:46:36  *** Miklaki has quit IRC
18:46:40  *** Rotutlos has quit IRC
18:46:40  *** LlEwElYnDyN has quit IRC
18:46:40  *** SUKHKY has quit IRC
18:46:49  *** Hennsk has quit IRC
18:46:49  *** Oohashchi has quit IRC
18:46:53  *** RhIaNuAn has quit IRC
18:46:59  *** Adsullataio has quit IRC
18:46:59  *** _NcIpE_ has quit IRC
18:47:02  *** Sveifrsl has quit IRC
18:47:03  *** _ishiya_9 has quit IRC
18:47:03  *** _Jorge_ has quit IRC
18:47:03  *** gefjmul has quit IRC
18:47:08  *** HAYASHIWANO has quit IRC
18:47:12  *** CHENIC has quit IRC
18:47:12  *** enNiLtt has quit IRC
18:47:12  *** _orloVKy_0 has quit IRC
18:47:16  *** Penarduius has quit IRC
18:47:17  *** Maggard77 has quit IRC
18:47:17  *** Laodone has quit IRC
18:47:26  *** Aelfrrg has quit IRC
18:47:29  *** sextiuspio has quit IRC
18:47:31  *** lucicerus has quit IRC
18:47:31  *** Dakaawa has quit IRC
18:47:31  *** ToDoSiS has quit IRC
18:47:31  *** covean has quit IRC
18:47:35  *** PAPIRIUMUS has quit IRC
18:47:35  *** Hallbdr has quit IRC
18:47:35  *** Conseos has quit IRC
18:47:35  *** bedeyerin has quit IRC
18:47:39  *** IULIVIIA has quit IRC
18:47:39  *** Jeremiama has quit IRC
18:47:43  *** BEILER has quit IRC
18:47:43  *** koryc has quit IRC
18:47:44  *** Allbee has quit IRC
18:47:56  *** GEFJOUND has quit IRC
18:47:58  *** ANAXILON has quit IRC
18:47:58  *** _TRAHAEXEN_ has quit IRC
18:48:02  *** ventoer has quit IRC
18:48:06  *** xXBaimaXx has quit IRC
18:48:11  *** dizeas has quit IRC
18:48:15  *** Ament has quit IRC
18:48:15  *** INGVILDFN has quit IRC
18:48:22  *** _oyagami_ has quit IRC
18:48:22  *** NUNLEE has quit IRC
18:48:23  *** xXGRENDASXx has quit IRC
18:48:25  *** Archenus has quit IRC
18:48:25  *** xXAranisibonXx has quit IRC
18:48:25  *** zaRzaL has quit IRC
18:48:39  *** Hirakhii has quit IRC
18:48:41  *** xXsvipallngrXx7 has quit IRC
18:48:41  *** Herebealow has quit IRC
18:48:49  *** glx has joined #openttd
18:48:49  *** ChanServ sets mode: +v glx
18:48:49  *** KaNaUhIi has quit IRC
18:48:49  *** Indonta has quit IRC
18:48:54  *** TUCCCUS has quit IRC
18:48:54  *** Healgang has quit IRC
18:48:54  *** Gelaot has quit IRC
18:48:54  *** AMBUSTOS has quit IRC
18:48:54  *** mitanikaama has quit IRC
18:48:58  *** ArIsTaEs has quit IRC
18:48:58  *** Glynned has quit IRC
18:48:58  *** _sUNNGifaLd_9 has quit IRC
18:49:02  *** SIEROKI has quit IRC
18:49:02  *** Leonip has quit IRC
18:49:12  *** calcha has quit IRC
18:49:12  *** SzCzA has quit IRC
18:49:12  *** KINJOEKI has quit IRC
18:49:13  *** POisSEu has quit IRC
18:49:17  *** Tarafan has quit IRC
18:49:21  *** Sakiui has quit IRC
18:49:21  *** xXsonoXx has quit IRC
18:49:21  *** Aksyoely has quit IRC
18:49:25  *** Wealld has quit IRC
18:49:25  *** NAPILINEK16 has quit IRC
18:49:25  *** armr has quit IRC
18:49:25  *** xXhjalgulXx has quit IRC
18:49:29  *** _Sempmas35_ has quit IRC
18:49:30  *** eOfoRAE has quit IRC
18:49:34  *** Ingsbaerv has quit IRC
18:49:34  *** Merewinre has quit IRC
18:49:34  *** arayawa has quit IRC
18:49:38  *** VISHNEOV has quit IRC
18:49:42  *** BYRLI has quit IRC
18:49:49  *** TRAZENDOAVA has quit IRC
18:49:53  *** Kotowsra has quit IRC
18:49:53  *** xXAdesdesXx2 has quit IRC
18:49:55  *** BrAuTmR has quit IRC
18:49:57  *** MALDWYNDD has quit IRC
18:49:57  *** mARUdien has quit IRC
18:50:02  *** hugags has quit IRC
18:50:02  *** FrontvA has quit IRC
18:50:02  *** Hangadnir has quit IRC
18:50:06  *** pANiha has quit IRC
18:50:10  *** ampestrta has quit IRC
18:50:10  *** GWILLYWELDA has quit IRC
18:50:10  *** _ARTEGUM_ has quit IRC
18:50:10  *** Consoado95 has quit IRC
18:50:15  *** Wertic has quit IRC
18:50:15  *** koenig has quit IRC
18:50:15  *** CeRiDwEyN has quit IRC
18:50:15  *** Scyldiela has quit IRC
18:50:23  *** Kitamueda has quit IRC
18:50:23  *** RAcHaRILEt has quit IRC
18:50:23  *** jarra has quit IRC
18:50:25  *** _awailed_ has quit IRC
18:50:25  *** xXBealieliahXx has quit IRC
18:50:29  *** bragrgr has quit IRC
18:50:29  *** Affydd has quit IRC
18:50:34  *** Batres has quit IRC
18:50:34  *** RimuLISt has quit IRC
18:50:34  *** Roburis has quit IRC
18:50:38  *** PLUMBER has quit IRC
18:50:42  *** _Aldikr_ has quit IRC
18:50:42  *** MundINGINg has quit IRC
18:50:47  *** Polskiina has quit IRC
18:50:47  *** frankyn has quit IRC
18:50:47  *** _Lynicsus15_ has quit IRC
18:50:47  *** Brondingst has quit IRC
18:50:51  *** Suitato has quit IRC
18:50:51  *** lOrA has quit IRC
18:50:51  *** HyPaTrEuDeS has quit IRC
18:50:55  *** MINIUSNDA has quit IRC
18:51:00  *** Xenopth has quit IRC
18:51:00  *** xXGEIRTLI81Xx has quit IRC
18:51:00  *** YaMaMoToKa has quit IRC
18:51:00  *** Jarrve has quit IRC
18:51:06  *** Imposto has quit IRC
18:51:06  *** Falsilhe has quit IRC
18:51:10  *** Broadnax445 has quit IRC
18:51:13  *** _xXEADWINFRARDXx_ has quit IRC
18:51:13  *** Derma has quit IRC
18:51:15  *** xX_AbilD_Xx has quit IRC
18:51:15  *** Valgaldragu has quit IRC
18:51:19  *** Fukunagaota has quit IRC
18:51:19  *** xXSooXx has quit IRC
18:51:19  *** dilwyus has quit IRC
18:51:23  *** Condarnus has quit IRC
18:51:23  *** iefanwan has quit IRC
18:51:28  *** kluczkik has quit IRC
18:51:28  *** xXEadweredXx has quit IRC
18:51:28  *** Grzebita has quit IRC
18:51:28  *** MeRfYeN has quit IRC
18:51:32  *** _eRiUsus87_ has quit IRC
18:51:32  *** Bricula has quit IRC
18:51:36  *** Elecech has quit IRC
18:51:36  *** NASICINILVA has quit IRC
18:51:41  *** eleazma has quit IRC
18:51:43  *** _Curiatus_ has quit IRC
18:51:51  *** Medesmas has quit IRC
18:51:51  *** jacklyn has quit IRC
18:51:55  *** Queci has quit IRC
18:51:55  *** Andromne has quit IRC
18:51:55  *** DWYFALIO has quit IRC
18:51:55  *** Dorn has quit IRC
18:51:55  *** Lluisis has quit IRC
18:52:00  *** apolliod has quit IRC
18:52:00  *** gLADYsgED has quit IRC
18:52:04  *** nnildr has quit IRC
18:52:04  *** MeRlIrCh has quit IRC
18:52:08  *** Geirdlm has quit IRC
18:52:08  *** estes has quit IRC
18:52:08  *** MEREREDYN has quit IRC
18:52:08  *** KuCiJaN has quit IRC
18:52:20  *** Llewelynym has quit IRC
18:52:21  *** UCHIiHI741 has quit IRC
18:52:23  *** LUBASKI has quit IRC
18:52:23  *** xXjOThAeLeLXx184 has quit IRC
18:52:27  *** Mektaski has quit IRC
18:52:32  *** xXdELLInTRA62Xx has quit IRC
18:52:36  *** Oediomeam has quit IRC
18:52:36  *** caeliusito has quit IRC
18:52:36  *** Aguchita has quit IRC
18:52:40  *** eliatkim has quit IRC
18:52:49  *** Nasiclo has quit IRC
18:52:51  *** Sylf has joined #openttd
18:53:00  *** DaMmEyEr has quit IRC
18:53:00  *** hatfield has quit IRC
18:53:00  *** blodeuwelis has quit IRC
18:53:04  *** Geirskun has quit IRC
18:53:04  *** VALGNDR has quit IRC
18:53:06  *** Cassimoppe has quit IRC
18:53:08  *** VILISNH has quit IRC
18:53:08  *** xXZenohusXx701 has quit IRC
18:53:13  *** WeSsOn has quit IRC
18:53:13  *** SIGRIRR has quit IRC
18:53:13  *** Wiczus has quit IRC
18:53:13  *** xXceTiurAXx has quit IRC
18:53:17  *** DaGfInR has quit IRC
18:53:17  *** botts has quit IRC
18:53:17  *** xXSigynnfjXx has quit IRC
18:53:17  *** Elzapael has quit IRC
18:53:21  *** CamPeIs has quit IRC
18:53:21  *** blodni has quit IRC
18:53:21  *** CaTilUSus has quit IRC
18:53:25  *** Eldaram has quit IRC
18:53:25  *** Osbeofrld has quit IRC
18:53:30  *** pulvillusso has quit IRC
18:53:30  *** AFANASOV has quit IRC
18:53:30  *** broome has quit IRC
18:53:30  *** Swonger has quit IRC
18:53:34  *** _DiOgEnIaOpA8_ has quit IRC
18:53:34  *** Krzywancz has quit IRC
18:53:34  *** BROSLS has quit IRC
18:53:45  *** Asawamuama has quit IRC
18:53:45  *** Thoms has quit IRC
18:53:45  *** experra has quit IRC
18:53:47  *** Marcuslus has quit IRC
18:53:49  *** _Wiglafaf_ has quit IRC
18:53:51  *** Ieuarl has quit IRC
18:53:51  *** RaGnVaLnGa has quit IRC
18:53:53  *** Jalafj has quit IRC
18:53:57  *** xXYOSHIIDAXx has quit IRC
18:53:57  *** Oforfer has quit IRC
18:53:58  *** OSWALNE has quit IRC
18:53:58  *** rhamaried has quit IRC
18:53:58  *** Elechda has quit IRC
18:54:02  *** Cason has quit IRC
18:54:02  *** JEHALEEAT has quit IRC
18:54:02  *** xXLlywelelXx has quit IRC
18:54:06  *** TRAHERNWEN has quit IRC
18:54:06  *** Llewena has quit IRC
18:54:10  *** Shindenden has quit IRC
18:54:10  *** Siorth has quit IRC
18:54:19  *** helginnr has quit IRC
18:54:25  *** Semi69 has quit IRC
18:54:28  *** aNNEIuSgUs has quit IRC
18:54:28  *** xXHeliantorXx has quit IRC
18:54:30  *** Kennard has quit IRC
18:54:34  *** Heoroeca has quit IRC
18:54:38  *** Vaidadst has quit IRC
18:54:43  *** Ohtherebeer has quit IRC
18:54:47  *** ECGLARO has quit IRC
18:54:52  *** Kumonovyev has quit IRC
18:54:56  *** SIgMuDUL has quit IRC
18:55:00  *** HaRaAn has quit IRC
18:55:00  *** jonty-comp has quit IRC
18:55:06  *** _loptasrt132_ has quit IRC
18:55:10  *** halgaro has quit IRC
18:55:13  *** HoRiGuTa has quit IRC
18:55:20  *** MeAgAn has quit IRC
18:55:20  *** ealfdenng has quit IRC
18:55:23  *** xXSvanhilrrXx227 has quit IRC
18:55:23  *** Artemisdas has quit IRC
18:55:23  *** OsBeOfWiLd has quit IRC
18:55:23  *** _Sigmudri_ has quit IRC
18:55:24  *** SEGAWWA has quit IRC
18:55:28  *** Waguespack has quit IRC
18:55:28  *** EguRaes has quit IRC
18:55:32  *** Ingvarrkr has quit IRC
18:55:34  *** Brynhildrgfr has quit IRC
18:55:34  *** NJORDULD has quit IRC
18:55:36  *** Arngvi has quit IRC
18:55:39  *** xXynhildrllXx has quit IRC
18:55:39  *** xXrifugerXx has quit IRC
18:55:45  *** vIbIUNiuUS has quit IRC
18:55:45  *** xXPANDOLUSXx has quit IRC
18:55:47  *** Gulbdan has quit IRC
18:55:47  *** cometta has quit IRC
18:55:53  *** Cinniusius has quit IRC
18:55:56  *** RauGApTS has quit IRC
18:55:56  *** EmLiNg has quit IRC
18:56:00  *** Lavras has quit IRC
18:56:00  *** POPIOSikEK has quit IRC
18:56:00  *** Vosegomnua8 has quit IRC
18:56:04  *** KOYAKE has quit IRC
18:56:04  *** GWYNWR has quit IRC
18:56:13  *** hrethrr has quit IRC
18:56:13  *** rifullor has quit IRC
18:56:13  *** gwenfrrin has quit IRC
18:56:13  *** VEDIULIUS has quit IRC
18:56:22  *** YuEn has quit IRC
18:56:26  *** JERAHMEEECH has quit IRC
18:56:26  *** _allstlfr_ has quit IRC
18:56:28  *** Antonky has quit IRC
18:56:28  *** Bright has quit IRC
18:56:28  *** BEYLAKA443 has quit IRC
18:56:28  *** luculleous has quit IRC
18:56:28  *** Hoag has quit IRC
18:56:30  *** BrAdIsH has quit IRC
18:56:32  *** TEMEND has quit IRC
18:56:34  *** ScEaDaS has quit IRC
18:56:36  *** kasparovnov has quit IRC
18:56:40  *** BLODwOS has quit IRC
18:56:45  *** Drystel has quit IRC
18:56:45  *** Brosingngs has quit IRC
18:56:49  *** xXfoldardrrdrXx has quit IRC
18:56:49  *** llino has quit IRC
18:56:49  *** tTInNiNn has quit IRC
18:56:49  *** HEMINGSRE has quit IRC
18:56:53  *** helgiBIl has quit IRC
18:56:53  *** VaUgHnDd has quit IRC
18:56:54  *** FuRiO has quit IRC
18:56:54  *** annETte has quit IRC
18:56:58  *** Autroeo has quit IRC
18:56:58  *** _SNOTGG_ has quit IRC
18:57:02  *** calumag has quit IRC
18:57:02  *** SZkIewiCrkA has quit IRC
18:57:06  *** Vediusllo has quit IRC
18:57:08  *** _Wiglaro03_ has quit IRC
18:57:08  *** Barskets has quit IRC
18:57:08  *** MALAKOVSIN has quit IRC
18:57:11  *** _Aksiky05_ has quit IRC
18:57:13  *** griffior has quit IRC
18:57:15  *** Demoleoea has quit IRC
18:57:21  *** ceber has quit IRC
18:57:21  *** xXmaciockiXx has quit IRC
18:57:21  *** _BELeNOba_ has quit IRC
18:57:25  *** Hatake has quit IRC
18:57:30  *** CORTAQUE has quit IRC
18:57:30  *** anthipeas has quit IRC
18:57:30  *** _hereus_ has quit IRC
18:57:34  *** xXRbarjaXx has quit IRC
18:57:34  *** xXLuCiLuSXx has quit IRC
18:57:39  *** xXCaDfArYnXx616 has quit IRC
18:57:39  *** Manuelito has quit IRC
18:58:12  *** Kimpel has quit IRC
18:58:15  *** Grufffin has quit IRC
18:58:18  *** xXIovantucusXx has quit IRC
18:58:21  *** xXTANABEUJIXx has quit IRC
18:58:24  *** Eowulfgang has quit IRC
18:58:24  *** xX_segashni_Xx has quit IRC
18:58:27  *** Aradogan has quit IRC
18:58:27  *** Winered has quit IRC
18:58:30  *** Hallvarir has quit IRC
18:58:33  *** rONwArt has quit IRC
18:58:39  *** Rabassz has quit IRC
18:58:42  *** Moritanou has quit IRC
18:58:42  *** xXtOutATIsTaXx6 has quit IRC
18:58:42  *** SeRvE has quit IRC
18:58:45  *** xXNnillrXx has quit IRC
18:58:48  *** ELNAAZ has quit IRC
19:02:25  *** xXPAULSETHXx334 has quit IRC
19:03:09  *** xXHestoclelesXx has quit IRC
19:03:29  *** rhoslt has quit IRC
19:03:32  *** SaBrRr has quit IRC
19:03:32  *** ALISAMALIS has quit IRC
19:03:35  *** _Rimnirvi86_ has quit IRC
19:03:38  *** Zubotiky has quit IRC
19:03:41  *** TAGIRAIARA has quit IRC
19:03:41  *** xX_HELEDTH_Xx has quit IRC
19:03:44  *** Eilwean has quit IRC
19:03:44  *** xXICAUNUWYNXx has quit IRC
19:03:44  *** Marki has quit IRC
19:03:44  *** Hjalmne has quit IRC
19:03:47  *** Nehemiaah has quit IRC
19:03:50  *** Yamotekubo has quit IRC
19:03:50  *** Gladylisir has quit IRC
19:03:53  *** Sigmuamr has quit IRC
19:03:53  *** shatskrin has quit IRC
19:03:56  *** xXathoveiXx has quit IRC
19:03:59  *** _Ootsono_ has quit IRC
19:04:49  *** Heddwira has quit IRC
19:04:52  *** CoMprres has quit IRC
19:04:52  *** ArAkIgI has quit IRC
19:04:55  *** tarais has quit IRC
19:04:55  *** Ideguoto has quit IRC
19:04:58  *** HoWaRtH has quit IRC
19:05:05  *** ShArKeY has quit IRC
19:05:08  *** Berwylla has quit IRC
19:05:08  *** xXEyvinllXx has quit IRC
19:05:11  *** Hiratouima has quit IRC
19:05:14  *** fails has quit IRC
19:05:14  *** Godrigar has quit IRC
19:05:17  *** Canemais has quit IRC
19:05:20  *** ADZINSZNY has quit IRC
19:05:20  *** xXMalickiewkiXx has quit IRC
19:05:23  *** Phigeta has quit IRC
19:05:23  *** Heoroulf has quit IRC
19:05:26  *** Mulhara has quit IRC
19:05:26  *** ritanus has quit IRC
19:05:26  *** talfrnid has quit IRC
19:05:26  *** GOOSLIN has quit IRC
19:05:26  *** xXMalchieleel024Xx has quit IRC
19:05:29  *** shitawa has quit IRC
19:05:32  *** _hugaing_ has quit IRC
19:05:35  *** xXOlwywenXx has quit IRC
19:05:38  *** AESCTAN has quit IRC
19:05:38  *** Golusas has quit IRC
19:05:41  *** hafgANTtiA has quit IRC
19:05:44  *** Hagvisi has quit IRC
19:05:44  *** Orestes has quit IRC
19:05:44  *** Ikawahahi has quit IRC
19:05:47  *** xX_fitelaar_Xx has quit IRC
19:05:50  *** Kamitsu has quit IRC
19:05:53  *** Mateski has quit IRC
19:05:59  *** Regilliuus has quit IRC
19:06:02  *** Lyta has quit IRC
19:06:05  *** bealiakiel has quit IRC
19:06:08  *** PILAKHA has quit IRC
19:06:08  *** alicea has quit IRC
19:06:15  *** gwenhwyfon has quit IRC
19:06:15  *** TOMBLIN has quit IRC
19:09:10  *** LadyHawk has quit IRC
19:09:44  *** supermop has quit IRC
19:10:01  *** sim-al2 has quit IRC
19:12:32  *** SHEAZAHAZ has quit IRC
19:12:32  *** inGThoGg has quit IRC
19:12:35  *** AePiUs has quit IRC
19:12:39  *** Demolybne has quit IRC
19:12:41  *** ragnbri has quit IRC
19:12:41  *** WeOhStAnLa has quit IRC
19:12:45  *** GEATOC has quit IRC
19:12:47  *** xX_Niitakhi_Xx has quit IRC
19:12:47  *** hanGhli has quit IRC
19:12:50  *** xXIonelynXx74 has quit IRC
19:12:50  *** Raamiahlet has quit IRC
19:12:54  *** Dylianael832 has quit IRC
19:12:56  *** Watley has quit IRC
19:13:00  *** GESTNH has quit IRC
19:13:37  *** orudge` has quit IRC
19:13:56  *** FrEaLlR has quit IRC
19:13:59  *** xXKozlovlov07Xx has quit IRC
19:14:01  *** sla_ro|master has quit IRC
19:14:02  *** Southerly has quit IRC
19:14:05  *** xX_DeTrImUa_Xx has quit IRC
19:14:05  *** AlIeSiNtA has quit IRC
19:14:08  *** MiLiAn has quit IRC
19:14:08  *** Horatiaus has quit IRC
19:14:11  *** xX_Arintawn_Xx has quit IRC
19:14:14  *** CoLlUrA has quit IRC
19:14:14  *** MEREWIWEN has quit IRC
19:14:17  *** SwErTiMa has quit IRC
19:14:20  *** akumovov has quit IRC
19:14:23  *** Myrtle4 has quit IRC
19:14:26  *** ThEtIaS has quit IRC
19:16:36  *** FAVA has quit IRC
19:16:36  *** SUnNunuL has quit IRC
19:16:37  *** xX_Llionus_Xx has quit IRC
19:16:39  *** _xXNehemiahakXx_ has quit IRC
19:16:43  *** Adworak has quit IRC
19:16:43  *** Dala has quit IRC
19:16:43  *** SNORRIAND has quit IRC
19:16:52  *** Ostoore has quit IRC
19:16:52  *** besziak has quit IRC
19:16:55  *** Nehealiah has quit IRC
19:16:55  *** Randgriir has quit IRC
19:16:55  *** wuLFiALd has quit IRC
19:16:55  *** Gwenythdd has quit IRC
19:16:55  *** grebskak has quit IRC
19:16:55  *** xXHERTESFA552Xx has quit IRC
19:16:57  *** KADAOto has quit IRC
19:16:58  *** Osbeoic has quit IRC
19:16:58  *** Mariusnus77 has quit IRC
19:17:00  *** Undilaf has quit IRC
19:17:00  *** Zkarska has quit IRC
19:17:01  *** CURSOSA has quit IRC
19:17:03  *** Moleki has quit IRC
19:18:17  *** bRoNDElAF has quit IRC
19:18:17  *** rrangann763 has quit IRC
19:18:20  *** glaedrht has quit IRC
19:18:26  *** Ojimaidaga has quit IRC
19:18:26  *** FrAnKsLa2 has quit IRC
19:18:27  *** ThEnAeUs has quit IRC
19:18:29  *** _xXHERTEITHRJXx_ has quit IRC
19:18:30  *** DEPOISTA has quit IRC
19:18:31  *** CURViLIUS has quit IRC
19:19:00  *** Aquiliusnas has quit IRC
19:19:51  *** Pedaedalus has quit IRC
19:19:51  *** _Mangano_5 has quit IRC
19:19:51  *** Gunt has quit IRC
19:19:51  *** TEnNIWyn has quit IRC
19:19:54  *** xXVishevXx has quit IRC
19:19:54  *** SIGuhR has quit IRC
19:19:57  *** Annaevoina has quit IRC
19:19:57  *** _Hranger_127 has quit IRC
19:20:00  *** Mikol00 has quit IRC
19:20:06  *** Prisco has quit IRC
19:20:06  *** Hazamata has quit IRC
19:20:06  *** Morwerthira has quit IRC
19:20:09  *** barnett has quit IRC
19:20:12  *** xX_Barahmed_Xx has quit IRC
19:20:12  *** osbeourh has quit IRC
19:20:15  *** Deiroem has quit IRC
19:20:18  *** Carwyena has quit IRC
19:20:21  *** Ammler has quit IRC
19:20:21  *** owelldd has quit IRC
19:20:24  *** sTaFldr has quit IRC
19:20:27  *** Nerthoreti has quit IRC
19:20:30  *** SuLlAwNnA has quit IRC
19:20:33  *** EoFoRhIrIc has quit IRC
19:20:36  *** lEOniDesSTa has quit IRC
19:20:39  *** demoson has quit IRC
19:20:39  *** AISHIHI has quit IRC
19:20:42  *** Ysbadta has quit IRC
19:20:43  *** xXKishitakaXx4 has quit IRC
19:20:45  *** michi_cc has quit IRC
19:20:45  *** JeHoRaIm has quit IRC
19:20:47  *** geirlfr has quit IRC
19:20:48  *** _tetheus_9 has quit IRC
19:20:51  *** Gethis has quit IRC
19:20:54  *** xXRendzikiXx has quit IRC
19:20:57  *** Andinusos has quit IRC
19:21:03  *** Hrafnatr has quit IRC
19:21:06  *** Ouvinas has quit IRC
19:21:06  *** Artenkmov has quit IRC
19:21:09  *** xXENNILDUL11Xx has quit IRC
19:21:12  *** euRobuTIs has quit IRC
19:22:22  *** Yusuposky has quit IRC
19:22:22  *** Braitheona has quit IRC
19:22:22  *** Dicepus has quit IRC
19:22:22  *** Volz has quit IRC
19:22:22  *** raCz has quit IRC
19:22:23  *** Xenopes has quit IRC
19:22:23  *** _xXMitchemXx_ has quit IRC
19:22:23  *** pedraza has quit IRC
19:22:24  *** Llewellynn has quit IRC
19:22:24  *** Branin has quit IRC
19:22:24  *** GWENWY has quit IRC
19:22:24  *** Elfrgy has quit IRC
19:22:24  *** Perceyn has quit IRC
19:22:24  *** Godwineric has quit IRC
19:24:29  *** _xXNantonniaXx_ has quit IRC
19:24:32  *** brynhinn has quit IRC
19:24:35  *** Hristfj has quit IRC
19:24:38  *** Damskiicz has quit IRC
19:24:41  *** gWENtan has quit IRC
19:24:41  *** toyotsuta has quit IRC
19:24:44  *** ookawahni01 has quit IRC
19:24:44  *** Fortdas has quit IRC
19:24:45  *** Apraksakoev has quit IRC
19:24:47  *** Stycz has quit IRC
19:24:50  *** _Artesina_964 has quit IRC
19:24:53  *** Icollutia has quit IRC
19:24:53  *** xXCedrickXx84 has quit IRC
19:24:56  *** Ingwiglhro has quit IRC
19:24:59  *** Equitus has quit IRC
19:25:03  *** urda has quit IRC
19:25:03  *** Flossie has quit IRC
19:25:03  *** SeAxNeAtRe has quit IRC
19:25:05  *** Sextiusllo has quit IRC
19:25:05  *** WEohsTAnulF has quit IRC
19:25:09  *** Stasiak has quit IRC
19:25:11  *** Eleazadad has quit IRC
19:25:14  *** HRUNTILD has quit IRC
19:25:18  *** BrAgRr has quit IRC
19:25:21  *** UNFERDA has quit IRC
19:25:24  *** eadwrht has quit IRC
19:25:27  *** Gedalim has quit IRC
19:25:42  *** _Faires_ has quit IRC
19:25:48  *** Canetoama has quit IRC
19:25:48  *** Wilheardae has quit IRC
19:26:08  *** Meretem has quit IRC
19:26:11  *** Usar has quit IRC
19:26:17  *** xXoloseXx has quit IRC
19:26:23  *** FRIJA has quit IRC
19:26:29  *** WAY has quit IRC
19:26:32  *** OOTAKAWNO has quit IRC
19:26:32  *** niSIeEtH has quit IRC
19:26:38  *** _xXHaMaIcXx_ has quit IRC
19:26:47  *** Arguno has quit IRC
19:26:47  *** TUGUMOS has quit IRC
19:26:50  *** ceriddylos has quit IRC
19:26:53  *** Icollnos has quit IRC
19:26:59  *** Isgleed4 has quit IRC
19:27:08  *** Destles has quit IRC
19:27:23  *** MENELAId has quit IRC
19:27:26  *** dunning has quit IRC
19:27:29  *** OoHiRaMa has quit IRC
19:27:35  *** xXCaSsEgUsBoNXx14 has quit IRC
19:27:53  *** xXbubuteiusXx has quit IRC
19:27:59  *** _EURYMACHUES_ has quit IRC
19:28:02  *** REGULRES has quit IRC
19:28:11  *** Agimokov has quit IRC
19:28:11  *** Ooyamda has quit IRC
19:28:14  *** sveigarr has quit IRC
19:28:38  *** OuTrOsNhA has quit IRC
19:28:40  *** Skilfrr has quit IRC
19:28:47  *** MORIMOUDA has quit IRC
19:28:50  *** Turton has quit IRC
19:28:50  *** xXSaHaKuGiKiXx has quit IRC
19:28:53  *** Suetus has quit IRC
19:28:56  *** Licata has quit IRC
19:28:59  *** Gruffen has quit IRC
19:29:11  *** Jehoshnan has quit IRC
19:29:11  *** xXBeowulfngaXx has quit IRC
19:29:18  *** _FrAnKfOr_ has quit IRC
19:29:18  *** GaReThUr has quit IRC
19:29:23  *** Assema has quit IRC
19:29:23  *** Ashiki has quit IRC
19:29:30  *** cidiuwch has quit IRC
19:29:38  *** Brezhev has quit IRC
19:29:48  *** _Filochki_04 has quit IRC
19:29:51  *** frumblul has quit IRC
19:29:53  *** Winifff has quit IRC
19:29:57  *** UNdIeR has quit IRC
19:30:00  *** Caswnon has quit IRC
19:30:00  *** Rsteinn has quit IRC
19:30:00  *** xXAnrhonenXx16 has quit IRC
19:30:09  *** _platoas_855 has quit IRC
19:30:33  *** paStOrE has quit IRC
19:30:36  *** Heimta has quit IRC
19:30:36  *** Dreasis has quit IRC
19:30:45  *** presocia has quit IRC
19:30:51  *** philomena has quit IRC
19:30:54  *** SaWyLeDdEd has quit IRC
19:31:00  *** GOLAb has quit IRC
19:31:03  *** forsega has quit IRC
19:31:12  *** xXRutiniusXx has quit IRC
19:31:18  *** BEOWULFIEOM21 has quit IRC
19:31:42  *** Indrrr has quit IRC
19:31:42  *** Hyledcyn has quit IRC
19:31:45  *** Fullel has quit IRC
19:31:45  *** _SeNtIuNuS_ has quit IRC
19:31:54  *** KEETON has quit IRC
19:31:54  *** xX_FFITHERYS_Xx has quit IRC
19:32:15  *** Shimotoni has quit IRC
19:32:27  *** CyNeBfRi has quit IRC
19:32:27  *** Depoem has quit IRC
19:32:27  *** Lobel has quit IRC
19:32:27  *** Llisolo has quit IRC
19:32:36  *** PORCIIUS has quit IRC
19:32:42  *** JERECHAM has quit IRC
19:32:45  *** OoTsUkDa has quit IRC
19:32:45  *** _GeiRAeR2_ has quit IRC
19:32:51  *** Wodallnj has quit IRC
19:32:57  *** xXKoUyAnIi7Xx has quit IRC
19:33:15  *** nuciusrva has quit IRC
19:33:15  *** GULLVEALM has quit IRC
19:33:15  *** Turrey has quit IRC
19:33:36  *** EURYDINI has quit IRC
19:33:39  *** gOLLoGU has quit IRC
19:33:42  *** Hefinor has quit IRC
19:33:54  *** akumin has quit IRC
19:33:54  *** MaIrWeRaEl has quit IRC
19:33:57  *** Godwiae has quit IRC
19:34:03  *** Elpaliaheel has quit IRC
19:34:12  *** vandermeer has quit IRC
19:34:18  *** Vejas has quit IRC
19:34:36  *** rrankj has quit IRC
19:34:45  *** GUNNNGR has quit IRC
19:34:47  *** Aksakky has quit IRC
19:35:09  *** eysteindr has quit IRC
19:35:24  *** Winchenbach has quit IRC
19:35:36  *** Klesz has quit IRC
19:35:36  *** CATULLUUS has quit IRC
19:35:51  *** GaNdRlL has quit IRC
19:35:57  *** xXDeboseXx5 has quit IRC
19:36:36  *** Hefined9 has quit IRC
19:36:36  *** abnobagus has quit IRC
19:36:36  *** Pacilto has quit IRC
19:36:36  *** GWYTHYRNA has quit IRC
19:36:55  *** Quanom has quit IRC
19:36:55  *** akaya has quit IRC
19:36:55  *** LOCHYK has quit IRC
19:37:01  *** Ewings has quit IRC
19:37:10  *** _jehdeph_ has quit IRC
19:37:16  *** _AlFrLiS_ has quit IRC
19:37:16  *** Hariasaerv177 has quit IRC
19:37:19  *** OOSHRA5 has quit IRC
19:37:30  *** Bollinger has quit IRC
19:37:31  *** COmIGo has quit IRC
19:37:39  *** anTEnIaebE310 has quit IRC
19:37:40  *** sCiLlNtH17 has quit IRC
19:37:46  *** rAchET has quit IRC
19:37:49  *** Frodanesng has quit IRC
19:38:01  *** RhILdrDr has quit IRC
19:38:01  *** StRiNgHaM has quit IRC
19:38:04  *** xXARVeRNsusXx has quit IRC
19:38:07  *** HALLVARNG has quit IRC
19:38:10  *** Harisk has quit IRC
19:38:10  *** Adachano has quit IRC
19:38:13  *** _elosa_ has quit IRC
19:38:13  *** glyniin has quit IRC
19:38:19  *** Heliceus3 has quit IRC
19:38:21  *** campestrlyr has quit IRC
19:38:21  *** Ecgwelalf has quit IRC
19:38:31  *** Hruntinhre has quit IRC
19:38:40  *** WeYmOuTh has quit IRC
19:38:45  *** Berecharlet has quit IRC
19:39:04  *** Cevaughwen has quit IRC
19:39:13  *** _cORNeCauS581_ has quit IRC
19:39:13  *** EOROGNG has quit IRC
19:39:13  *** _PIAZZA_ has quit IRC
19:39:31  *** MEINIRLYN has quit IRC
19:39:37  *** DzIcElA has quit IRC
19:39:43  *** HaMaInN has quit IRC
19:39:46  *** _GiLdElD_56 has quit IRC
19:39:46  *** Baraclet has quit IRC
19:39:52  *** Arinrov has quit IRC
19:40:07  *** Inosawani has quit IRC
19:40:16  *** AgAfInOaN has quit IRC
19:40:40  *** EADBURGFRI has quit IRC
19:40:40  *** Lungridi has quit IRC
19:40:58  *** xXLlewenfran118Xx has quit IRC
19:41:03  *** BluesInTheNet has quit IRC
19:41:15  *** Jehiema has quit IRC
19:41:17  *** Ganteuro has quit IRC
19:41:25  *** _xXquilhXx_ has quit IRC
19:41:49  *** _Garmunen_559 has quit IRC
19:42:07  *** HIAtT has quit IRC
19:42:07  *** Osgaae has quit IRC
19:42:13  *** AFANDROV has quit IRC
19:42:13  *** Ceriolo has quit IRC
19:42:28  *** valdnnr has quit IRC
19:42:38  *** koroleur has quit IRC
19:42:38  *** Medved has quit IRC
19:42:45  *** _Helicmas_ has quit IRC
19:42:48  *** xXHachtingXx has quit IRC
19:42:54  *** Rosso has quit IRC
19:42:54  *** _ChereNKa_ has quit IRC
19:43:00  *** SCRIBIUUS has quit IRC
19:43:00  *** Osmunngrht has quit IRC
19:43:00  *** BERENKOOV has quit IRC
19:43:03  *** jehananada has quit IRC
19:43:06  *** CaErWeNdD has quit IRC
19:43:06  *** sigtryggdr has quit IRC
19:43:07  *** jehdielet has quit IRC
19:43:12  *** CZEWSKRKO has quit IRC
19:43:12  *** xXBaSzAsKiXx has quit IRC
19:43:21  *** ZYBUR8 has quit IRC
19:43:25  *** Anwenwan has quit IRC
19:43:27  *** _Galaharnt97_ has quit IRC
19:43:36  *** TeRNorE has quit IRC
19:43:45  *** JEHOZADAKIEL has quit IRC
19:43:49  *** Bronena has quit IRC
19:43:49  *** _CINIUUS_37 has quit IRC
19:43:51  *** Jehoszar has quit IRC
19:44:01  *** Freylul has quit IRC
19:44:01  *** xXCelot5Xx has quit IRC
19:44:04  *** _xXOosawadaobaXx_ has quit IRC
19:44:04  *** _MEGOWN_ has quit IRC
19:44:07  *** hermann has quit IRC
19:44:10  *** xXCassegomawnXx has quit IRC
19:44:13  *** hoRiArA has quit IRC
19:44:22  *** Brezhabkov has quit IRC
19:44:22  *** Siwaned has quit IRC
19:44:23  *** Mairwenyn has quit IRC
19:44:26  *** Kogaino has quit IRC
19:44:27  *** xXMikiNaiKXx has quit IRC
19:44:34  *** xX_Zobel_Xx has quit IRC
19:44:37  *** eoRn has quit IRC
19:44:40  *** crinthle has quit IRC
19:44:41  *** _IDoSoEST_ has quit IRC
19:44:42  *** Priceen has quit IRC
19:44:46  *** _Loptsdi_ has quit IRC
19:44:47  *** Vipulrsk has quit IRC
19:44:49  *** VeRa has quit IRC
19:44:52  *** Borvo has quit IRC
19:44:55  *** Aksaev has quit IRC
19:44:57  *** Ennilldr has quit IRC
19:44:57  *** sceadugeng has quit IRC
19:44:58  *** HUGASNG has quit IRC
19:44:58  *** lendr has quit IRC
19:45:01  *** Alkel_U3 has quit IRC
19:45:02  *** Renniuslo has quit IRC
19:45:03  *** xX_Gethel_Xx has quit IRC
19:45:04  *** Eanmundies has quit IRC
19:45:04  *** suLLaTNoS has quit IRC
19:45:04  *** CERIDWALINT has quit IRC
19:45:04  *** Kurniak98 has quit IRC
19:45:04  *** bish has quit IRC
19:45:04  *** Dolczy has quit IRC
19:45:04  *** BEDEIN has quit IRC
19:45:05  *** Antonreo has quit IRC
19:45:09  *** Ingvaldr has quit IRC
19:45:10  *** Enriguez has quit IRC
19:45:11  *** TAMESMMA has quit IRC
19:45:12  *** AVERYMOV14 has quit IRC
19:45:14  *** _xXHennttXx_ has quit IRC
19:45:15  *** FeRrIeR has quit IRC
19:45:16  *** xXHallskiXx21 has quit IRC
19:45:17  *** Larish has quit IRC
19:45:18  *** HERJAN has quit IRC
19:45:18  *** ragngim has quit IRC
19:45:18  *** JoThZaR has quit IRC
19:45:20  *** Patrica has quit IRC
19:45:22  *** kruzelcki has quit IRC
19:45:23  *** Aurelgus has quit IRC
19:45:23  *** svalrg has quit IRC
19:45:24  *** eimdallpul has quit IRC
19:45:24  *** NeMeIoS has quit IRC
19:45:24  *** STUMBIGT has quit IRC
19:45:24  *** xXCzypiecczXx has quit IRC
19:45:25  *** Gwenlliaen has quit IRC
19:45:25  *** Sanoura has quit IRC
19:45:25  *** KEETER has quit IRC
19:45:25  *** Ingsng has quit IRC
19:45:26  *** NeMeToNsIn has quit IRC
19:45:26  *** Eorotbel has quit IRC
19:45:26  *** Nasiciusius has quit IRC
19:45:27  *** llIAnniD has quit IRC
19:45:27  *** Sveiri457 has quit IRC
19:45:27  *** NiLSA has quit IRC
19:45:27  *** keithley has quit IRC
19:45:30  *** xXGEDALEELAZXx has quit IRC
19:45:31  *** CEFINRA has quit IRC
19:45:32  *** xXGwenfreynXx863 has quit IRC
19:45:32  *** THUNDHUD has quit IRC
19:45:34  *** UlMaNsKy59 has quit IRC
19:45:34  *** theanaxra has quit IRC
19:45:34  *** Vivess has quit IRC
19:45:35  *** RSGRANNNI has quit IRC
19:45:35  *** Gwyneiraarn94 has quit IRC
19:45:35  *** Gawairwein786 has quit IRC
19:45:35  *** Rhamaxensin has quit IRC
19:45:35  *** falec has quit IRC
19:45:35  *** Theanno has quit IRC
19:45:35  *** Alwynyth has quit IRC
19:45:36  *** IFIOYS has quit IRC
19:45:36  *** AUNURTA has quit IRC
19:45:36  *** Sullatucos has quit IRC
19:45:37  *** NEWBOld has quit IRC
19:45:40  *** RELASDO has quit IRC
19:45:40  *** _Corvinius_ has quit IRC
19:45:41  *** xXElNAtHELXx has quit IRC
19:45:41  *** xXAeronnedXx03 has quit IRC
19:45:41  *** DaNeLf4 has quit IRC
19:45:42  *** meirionaor has quit IRC
19:45:42  *** AIZARA has quit IRC
19:45:42  *** Ondsst has quit IRC
19:45:42  *** fornisi has quit IRC
19:45:42  *** _Jurczel_ has quit IRC
19:45:43  *** Aelfrird77 has quit IRC
19:45:44  *** Greis has quit IRC
19:45:44  *** eoforwinund has quit IRC
19:45:44  *** Galeona has quit IRC
19:45:44  *** Maty has quit IRC
19:45:45  *** xXElinorsXx has quit IRC
19:45:45  *** GUINEVERWYN has quit IRC
19:45:45  *** Gorowskiski has quit IRC
19:45:45  *** _erICsOn_51 has quit IRC
19:45:46  *** AFANASNOV43 has quit IRC
19:45:47  *** _Eiriayn78_ has quit IRC
19:45:47  *** CiCOLlUISANA has quit IRC
19:45:47  *** OWENYN has quit IRC
19:45:47  *** DEMOLEONDER has quit IRC
19:45:47  *** xX_Sceadeca_Xx has quit IRC
19:45:48  *** Zechaelael has quit IRC
19:45:48  *** Mhildgr has quit IRC
19:45:49  *** MadRId has quit IRC
19:45:50  *** siggand has quit IRC
19:45:50  *** Cribius has quit IRC
19:45:52  *** Pavlicov has quit IRC
19:45:52  *** _Savitch_ has quit IRC
19:45:53  *** BEaliAHAz has quit IRC
19:45:53  *** TaRaNhUs has quit IRC
19:45:53  *** _ANrhoDWYn_ has quit IRC
19:45:54  *** _hjalmr_ has quit IRC
19:45:55  *** Seneposula has quit IRC
19:45:55  *** Beowuald has quit IRC
19:45:55  *** Dobrikohov has quit IRC
19:45:55  *** Eofrri has quit IRC
19:45:55  *** Saxnana has quit IRC
19:45:55  *** Danesefn has quit IRC
19:45:55  *** Malleiupio has quit IRC
19:45:57  *** HOCKINS46 has quit IRC
19:45:58  *** xXREPHATIAHXx has quit IRC
19:45:58  *** xXKradelXx has quit IRC
19:45:58  *** _xXCadfaenidXx_ has quit IRC
19:45:58  *** Regulbusius has quit IRC
19:45:58  *** seitz has quit IRC
19:45:58  *** Burt has quit IRC
19:45:58  *** _Lebedkov_ has quit IRC
19:45:59  *** GwYnFlA64 has quit IRC
19:46:01  *** xXEadgyaeXx has quit IRC
19:46:01  *** sinfger has quit IRC
19:46:01  *** _MuNtEr_735 has quit IRC
19:46:01  *** Dagfinnrldr has quit IRC
19:46:01  *** Laodamaseus has quit IRC
19:46:01  *** anai has quit IRC
19:46:01  *** GELDOKI has quit IRC
19:46:01  *** BLODHEL has quit IRC
19:46:02  *** Simmering has quit IRC
19:46:02  *** _Vergiius6_ has quit IRC
19:46:02  *** Talfrynyn has quit IRC
19:46:03  *** struCLa has quit IRC
19:46:03  *** PoStUs has quit IRC
19:46:03  *** cons has quit IRC
19:46:03  *** Wodowskki has quit IRC
19:46:03  *** ARNBJSTA has quit IRC
19:46:03  *** Nehemilet has quit IRC
19:46:04  *** Chasse has quit IRC
19:46:04  *** MOSTRAOS has quit IRC
19:46:04  *** Heremolh has quit IRC
19:46:04  *** Semiar has quit IRC
19:46:04  *** HEIMDUL has quit IRC
19:46:05  *** Beckizny has quit IRC
19:46:05  *** mEDeahe has quit IRC
19:46:05  *** xXLupaichXx has quit IRC
19:46:06  *** Randbj has quit IRC
19:46:06  *** RAZAKI has quit IRC
19:46:06  *** Pecatoste has quit IRC
19:46:06  *** xXOssasunoXx has quit IRC
19:46:08  *** Hrethorka has quit IRC
19:46:09  *** Heledyn has quit IRC
19:46:10  *** Llewelynvyn has quit IRC
19:46:10  *** fullnul has quit IRC
19:46:11  *** cidinusina has quit IRC
19:46:11  *** WASNIEASZ has quit IRC
19:46:12  *** DENTATUSNUS has quit IRC
19:46:12  *** gorby has quit IRC
19:46:12  *** _Gwiliesen_ has quit IRC
19:46:13  *** MiStGgJ has quit IRC
19:46:13  *** Eadbeorar has quit IRC
19:46:13  *** Chech has quit IRC
19:46:14  *** oediomes has quit IRC
19:46:14  *** Aranrhyn has quit IRC
19:46:14  *** KUmonovskY has quit IRC
19:46:14  *** Volaius has quit IRC
19:46:15  *** Garmuld has quit IRC
19:46:15  *** Nichelson has quit IRC
19:46:15  *** Jahaziak has quit IRC
19:46:16  *** Condaan has quit IRC
19:46:17  *** xXArellanoXx has quit IRC
19:46:17  *** _FREAWAAF_ has quit IRC
19:46:17  *** Cassiniero has quit IRC
19:46:17  *** ScIlLiOpEuS has quit IRC
19:46:18  *** xXAlAtNyEvXx has quit IRC
19:46:18  *** Jehoahazda has quit IRC
19:46:18  *** Archelicne has quit IRC
19:46:18  *** Maisto has quit IRC
19:46:19  *** Cynebda has quit IRC
19:46:19  *** xXReciXx has quit IRC
19:46:20  *** shatskyman has quit IRC
19:46:20  *** xX_Khrusupin_Xx has quit IRC
19:46:20  *** Jocasice has quit IRC
19:46:20  *** Lograde has quit IRC
19:46:20  *** Gullvevi03 has quit IRC
19:46:20  *** BeDevyev has quit IRC
19:46:21  *** Eastwood19 has quit IRC
19:46:21  *** GwEnNeOs has quit IRC
19:46:21  *** IOLYWeLYN has quit IRC
19:46:24  *** ILHOSSOS has quit IRC
19:46:26  *** RANDGLD has quit IRC
19:46:27  *** Eliasaphaph has quit IRC
19:46:27  *** Telemces has quit IRC
19:46:27  *** Sveinrr has quit IRC
19:46:27  *** Hobalaf has quit IRC
19:46:27  *** Iefanrhoyr has quit IRC
19:46:28  *** xXBrynjarndrXx740 has quit IRC
19:46:28  *** cerysian346 has quit IRC
19:46:29  *** xXDeWyDdYnNXx9 has quit IRC
19:46:31  *** _Pitul_525 has quit IRC
19:46:31  *** Olwinsi has quit IRC
19:46:32  *** xXSOKoLoviNXx279 has quit IRC
19:46:35  *** Elmaine has quit IRC
19:46:35  *** Fraser has quit IRC
19:46:35  *** sOcrAEUs has quit IRC
19:46:36  *** Neriutia has quit IRC
19:46:36  *** Shiyara has quit IRC
19:46:38  *** bragrka has quit IRC
19:46:39  *** Eucliyta has quit IRC
19:46:41  *** Solochth has quit IRC
19:46:45  *** xXgwenfrewinXx has quit IRC
19:46:52  *** Setoda has quit IRC
19:46:52  *** Adackiski has quit IRC
19:46:57  *** Paczy has quit IRC
19:48:27  *** tokai|flx has quit IRC
19:53:45  <DorpsGek> Commit by fonsinchen :: r27681 trunk/src/station_cmd.cpp (2016-12-04 20:53:38 +0100 )
19:53:46  <DorpsGek> -Fix: When deleting stale links, iterate through order lists before iterating through vehicles
19:56:48  *** frosch123 has joined #openttd
19:59:23  <DorpsGek> Commit by fonsinchen :: r27682 trunk/src/station_cmd.cpp (2016-12-04 20:59:17 +0100 )
19:59:24  <DorpsGek> -Fix: Don't check if links are alive for manually routed cargo
20:00:21  *** DorpsGek sets mode: -m 
20:01:11  <Lejving> \o/
20:01:23  <Lejving> n1 fonsinchen
20:02:12  *** KenjiE20 has quit IRC
20:02:46  <__ln__> tip of the day: in irssi you can close a range of windows with one command
20:02:57  <Lejving> lol why would ANYONE need that!
20:03:15  <Sylf> why wouldn't anyone use irssi :P
20:04:26  <frosch123> @mode +j 5:10
20:04:30  *** efess has quit IRC
20:04:52  <frosch123> @mode +l160
20:05:34  <frosch123> @mode +l 160
20:05:34  *** DorpsGek sets mode: +l 160
20:12:49  <LordAro> \o/
20:17:02  *** threesix- has quit IRC
20:17:37  <__ln__> not again
20:18:10  <frosch123> you can do /mode __ln__ +g
20:19:33  <__ln__> now i did, wonder what it does
20:19:48  <frosch123> noone can open a query with you
20:35:28  *** umgeher_ is now known as umgeher
20:43:04  *** _dp_ has left #openttd
20:46:35  *** anders has quit IRC
20:46:38  *** OsteHovel has quit IRC
20:47:50  <frosch123> wow, we are bad at moderating
20:48:10  <frosch123> http://irc.netsplit.de/channels/?net=OFTC <- we made it to number one in users per channel on oftc
20:48:55  <frosch123> i gues that user limit was overdue :)
20:51:59  <V453000> XD
20:52:43  <glx> +i is helping too :)
20:53:06  <glx> as the previous wave was mitigated they can't invite themselves
20:55:33  *** tycoondemon2 has quit IRC
21:09:31  *** frosch123 has quit IRC
21:12:36  <LordAro> __ln__: https://freenode.net/kb/answer/usermodes
21:27:12  *** Ethereal_Whisper has quit IRC
21:55:19  *** Sacro has quit IRC
22:18:04  *** ConductorCat has quit IRC
22:31:52  *** michi_cc has joined #openttd
22:31:52  *** ChanServ sets mode: +v michi_cc
22:45:12  <LordAro> hmm
22:45:36  <LordAro> why does the website only offer 14.04 binaries for 1.6.1, when 16.04 was out by then?
22:48:56  <V453000> yes
22:54:45  <LordAro> mm, thought so
23:11:02  *** Lejving has quit IRC
23:22:35  <V453000> is the channel still +i?
23:22:40  <V453000> if so how do I invite Wolf01?
23:24:58  <Sylf> time to poke ops or half ops
23:25:15  <Sylf> plx?  rubidum? planetmaker?  is it time to undo +i yet?
23:25:22  <Sylf> glx
23:26:01  <Xaroth|Work> __ln__: with what command?
23:26:31  *** DorpsGek sets mode: +o glx
23:26:38  *** glx sets mode: -i 
23:26:44  *** DorpsGek sets mode: -o glx
23:27:05  *** Ammler has joined #openttd
23:27:41  *** Wolf01 has joined #openttd
23:27:44  <Wolf01> o/
23:27:59  <glx> 2 hours since the last query, so it should be ok I think
23:28:39  <V453000> who let the dogs out
23:28:41  <V453000> or in
23:30:21  <Wolf01> Was attached only this channel?
23:33:22  *** JezK has joined #openttd
23:34:19  <glx> many channels added +i during the bot attack
23:34:33  <Wolf01> The problem were those 4 first bots
23:46:19  *** threesixty has joined #openttd
23:51:59  <V453000> I have finished building my refinery complex =D
23:52:07  <V453000> time to go to sleep OR put it to use
23:52:07  <V453000> hmm
23:52:13  <Wolf01> OTTD or F?
23:52:46  <V453000> F as F
23:53:58  <V453000> 78 hours in ._.
23:54:06  <Wolf01> I started to make full stack complexes for single or 1-3 items of the same type (like modules or belts)
23:54:50  <Wolf01> Every complex starts from plates and made everything it needs
23:54:55  <Wolf01> *make
23:55:07  <V453000> right
23:55:22  <V453000> I am still on with my 1-processing-per-area thing
23:55:31  <Wolf01> So I have 2*104362
23:55:31  <V453000> it's getting complete soon
23:55:53  <Wolf01> So I have 2*10^4362 circuits factories
23:55:59  <V453000> yeah
23:56:14  <V453000> I have one :>
23:56:17  <Wolf01> I think that's the way to get the achievement too
23:56:36  <V453000> don't get about achievement
23:56:39  <V453000> care*
23:56:55  <Wolf01> Neither do I... I modded everything, I can't get it :P
23:57:06  <V453000> hehe, I even play on 0.15 so ... :)
23:57:21  <V453000> at least I find bugs in working revisions
23:58:05  <Wolf01> +1
23:58:41  <V453000> apart from that, gotta test dem hires grafix

Powered by YARRSTE version: svn-trunk