IRC logs for #openttd on OFTC at 2022-01-08
            
00:26:53 *** roadt__ has joined #openttd
00:28:51 *** Wormnest has joined #openttd
00:33:50 *** roadt_ has quit IRC (Ping timeout: 480 seconds)
01:04:26 *** WormnestAndroid has joined #openttd
01:08:27 *** WormnestAndroid has quit IRC (Read error: Connection reset by peer)
01:08:51 *** WormnestAndroid has joined #openttd
02:13:59 *** glx has quit IRC ()
03:03:43 *** Wormnest has quit IRC (Quit: Leaving)
03:37:53 *** Smedles has joined #openttd
03:44:03 *** D-HUND has joined #openttd
03:47:24 *** debdog has quit IRC (Ping timeout: 480 seconds)
03:52:28 *** Flygon has joined #openttd
04:43:54 *** Flygon_ has joined #openttd
04:45:42 *** Flygon has quit IRC (Ping timeout: 480 seconds)
05:15:24 <DorpsGek> [OpenTTD/team] chupper100 opened issue #285: [vi_VN] Translator access request https://git.io/J93HI
07:18:48 *** D-HUND is now known as debdog
07:29:03 *** andythenorth has joined #openttd
07:42:41 *** andythenorth has quit IRC (Quit: andythenorth)
07:46:36 *** andythenorth has joined #openttd
07:52:45 *** tokai|noir has joined #openttd
07:52:45 *** ChanServ sets mode: +v tokai|noir
07:59:41 *** tokai has quit IRC (Ping timeout: 480 seconds)
08:02:42 *** Gustavo6046 has quit IRC ()
08:11:28 *** nielsm has joined #openttd
09:01:30 *** sla_ro|master has joined #openttd
09:02:42 <andythenorth> yo
09:03:12 *** Wolf01 has joined #openttd
10:12:44 <TrueBrain> battling Rust lifetime
10:12:45 <TrueBrain> always fun :)
10:18:20 *** Extrems has quit IRC (Ping timeout: 480 seconds)
10:24:05 *** Extrems has joined #openttd
11:02:50 <TrueBrain> and ... we are back to "read past end of pseudo-sprite" :P
11:02:54 <TrueBrain> stupid varaction2 chains
11:24:01 <TrueBrain> the annoying part ... it seems to be fine :P Even looking at the grfcodec decompile it seems what I expect it to be :)
11:24:04 <TrueBrain> grrr
11:26:07 <TrueBrain> ugh, no I am a potato .. the "another operator is following" flag is just in a weird place
11:26:10 <TrueBrain> I always forget ...
11:29:21 <LordAro> TruePotato
11:29:27 <TrueBrain> yes!
11:29:56 <TrueBrain> now it doesn't fail, but doesn't work either :P
11:30:09 <TrueBrain> IMPROVEMENTS!
11:30:38 <DorpsGek> [OpenTTD/team] glx22 commented on issue #285: [vi_VN] Translator access request https://git.io/J93HI
11:32:00 <DorpsGek> [OpenTTD/team] glx22 commented on issue #284: [hr_HR] Translator access request https://git.io/J9Y53
11:42:29 <TrueBrain> owh, lol, totally unrelated change I made that was causing that
11:42:30 <TrueBrain> LALALALAA :D
11:43:37 <TrueBrain> a switch with no cases in NewGRF doesn't want to take my default .. hmm .. what did I do wrong :D
11:46:03 <TrueBrain> ah .. "special case"
11:46:15 <TrueBrain> jollygood
12:00:45 <michi_cc> Isn't all of NewGRF a single "special case"? :p
12:04:42 *** frosch123 has joined #openttd
12:04:45 <TrueBrain> Haha, very true :)
12:10:27 <frosch123> every grf generator so far fell for that trap
12:10:51 <frosch123> firs probably three times
12:12:47 <frosch123> "This sender has been verified from Openttd safe senders list" <- i love scams
12:13:43 <FLHerne> I like the ones that are from 'flherne.uk network administrator' -- i.e. me :p
12:13:44 <TrueBrain> But in good news, RPN to NewGRF is functional, with somewhat sane code :D now to extend it to support local variables :)
12:14:03 <TrueBrain> Rust is really nice for this kind of parsing
12:14:20 <TrueBrain> And it indeed is a single-pass compiler, what I was hoping for
12:14:29 <frosch123> the text is even more funny: Breanneh Spears BookKeeper has made a payment of $107,980.89 to invoice C43252.
12:14:44 <frosch123> i guess if you read that aloud it's Britney
12:14:59 <TrueBrain> We are rich!
12:16:52 <frosch123> we were rich
12:17:01 *** jottyfan has joined #openttd
12:19:12 <TrueBrain> Awh :(
12:28:22 <andythenorth> hmm
12:28:25 * andythenorth played tanks
12:28:30 <andythenorth> instead of FIRS 5
12:28:53 <andythenorth> why does this happen? :P
12:30:11 <TrueBrain> because why not?
12:44:41 <TrueBrain> hmm .. now the question, am I going for reduced NewGRF filesize, or for easy programming
12:44:48 <TrueBrain> callbacks can use the same functions
12:45:02 <TrueBrain> so I could put those in a set, and reuse that
12:45:16 <TrueBrain> orrrrrrr ... I could just ignore that completely, and for every industry every callback just generate the full chain
12:46:37 <andythenorth> FIRS is more fun long term
12:46:39 <andythenorth> but more work
12:46:50 <andythenorth> tanks no sense of reward, but easy :P
12:47:18 <frosch123> TrueBrain: nfo size is dominant for 8bpp newgrfs, but dwarfed by the sprites in 32bpp newgrf
12:47:30 <frosch123> imho ignore filesize, rather optimise for runtime
12:47:46 <TrueBrain> which runtime .. TrueGRF or OpenTTD? :P
12:48:16 <TrueBrain> pretty sure speed is the same for both solutions; it is just about reducing filesize or not, where with the latter I can be lovely lazy :)
12:48:25 <frosch123> openttd ofc :p runtime probably prefers long va2 over deeply nested va2
12:48:42 <TrueBrain> hmm, inline functions you say? Hmm
12:48:45 <TrueBrain> did not consider that yet
13:19:14 <TrueBrain> right ... now how do I return for normal callbacks, let's find out!
13:19:47 <TrueBrain> I guess this is the empty switch part :P
13:37:56 <TrueBrain> Callback 0x15f returned unknown/invalid result 0x1
13:37:57 <TrueBrain> awh
13:39:33 <frosch123> hey, you reached the age of useful error messages :)
13:39:50 <TrueBrain> except that I don't understand it
13:39:51 <TrueBrain> so not -that- useful :P
13:40:10 <frosch123> why do you use cb 15f though :p
13:40:23 <TrueBrain> https://newgrf-specs.tt-wiki.net/wiki/Callbacks#Set_initial_production_level_on_construction_.2815F.29
13:40:33 <TrueBrain> FIRS is doing that .. :P
13:41:05 <TrueBrain> but what is wrong with a result of 1?
13:41:10 <andythenorth> best callback ever
13:41:16 <andythenorth> can be used for ... other things :P
13:41:21 <TrueBrain> owh, range must be 04..80h
13:41:23 <TrueBrain> right
13:41:37 <michi_cc> "Production level; must be in range 04..80h!
13:41:44 <michi_cc> Too slow :)
13:42:00 <frosch123> "< 04" means "industry closure"
13:42:05 <frosch123> blame CS
13:42:08 <TrueBrain> did not expect such a weird error in that case :)
13:42:23 <TrueBrain> in good news, it works! :D \o/
13:47:52 <TrueBrain> what I do now, really childish: the result is stored in temp register 0
13:47:52 <TrueBrain> and the last chain fetches that register and uses no switches to return it
13:47:53 <TrueBrain> pretty sure that can be done smarter
13:47:54 <TrueBrain> but .. shrug
13:55:54 <andythenorth> ok, let's add industry regions
13:55:56 <andythenorth> not just clusters
13:55:59 * andythenorth starts
13:56:01 *** tokai has joined #openttd
13:56:01 *** ChanServ sets mode: +v tokai
13:58:11 <TrueBrain> okay, 5 industry callbacks are functional. Now I just need to add functions, local variables, and more industry variables before the FIRS variant starts to kick in :D
13:58:17 <TrueBrain> baby steps
13:59:04 <frosch123> how fluid are you in translating firs pynml into rpn?
13:59:13 <TrueBrain> see the gist
13:59:21 <TrueBrain> up to you to decide how fluent that is :P
13:59:31 <frosch123> the gist scares me :)
13:59:38 <TrueBrain> pyNML doesn't? :)
14:02:33 <TrueBrain> but yeah, I think it was pretty simple
14:02:39 <TrueBrain> RPN takes a bit getting used ot, but that is about it
14:02:50 <TrueBrain> so I think I did a 1-to-1 conversion
14:03:07 *** tokai|noir has quit IRC (Ping timeout: 480 seconds)
14:03:30 <andythenorth> I have NFI how you convert pynml to rpn :P
14:03:43 <andythenorth> there's a lot of loop expansion and conditionals in the templating
14:05:15 <TrueBrain> the reason RPN supports loops :)
14:29:40 *** jlx_ has joined #openttd
14:34:26 <andythenorth> hmm 392 instances of industry.economy_variations to refactor :P
14:34:28 <andythenorth> eh oh
14:38:24 <DorpsGek> [OpenTTD/team] frenchiveruti opened issue #286: [es_ES] Translator access request https://git.io/J9soW
14:41:33 <jlx_> If you have a savegame and you need to resize the map (because you already connected to all cities), is there a map resizer?
14:41:54 <jlx_> (I know, I asked a while ago, but maybe someone did this in the meantime)
14:43:02 <nielsm> no, it's absurdly difficult to resize maps
14:43:10 <nielsm> so one doesn't exist
14:44:19 <jlx_> what's the difficulty? just append some tiles here and there...
14:44:39 <nielsm> all coordinates of everything everywhere has to be remapped
14:44:55 <jlx_> isn't this simple math?
14:45:00 <nielsm> coordinates for the most part are in tile numbers, not (x,y) pairs
14:46:19 <nielsm> it's "simple", but there's so many different kinds of game objects that need to be taken into account that making a map resizer would be a huge task with lots of room for mistakes where you forget some detail on some object
14:47:02 <nielsm> which might only lead to issues long after the game has been converted and played for a while, making it hard/impossible to trace back to the cause
14:54:16 *** Strom has quit IRC ()
14:55:54 *** Strom has joined #openttd
15:04:13 *** glx has joined #openttd
15:04:13 *** ChanServ sets mode: +v glx
15:52:39 <DorpsGek> [OpenTTD/OpenTTD] Berbe opened issue #9782: [Bug]: Dedicated server requires useless client_name https://git.io/J9s6r
16:47:08 <DorpsGek> [OpenTTD/OpenTTD] J0anJosep opened pull request #9783: Cleanup #9725: Replace cmd_helper related functions and remove cmd_helper.h https://git.io/J9sPm
16:54:01 *** crem1 has quit IRC (Quit: WeeChat 3.2)
16:56:04 *** argoneus2 has joined #openttd
16:56:25 *** Strom has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** jlx_ has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** sla_ro|master has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** thelonelyellipsis[m] has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** jedavies has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** Cyberdemon has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** Timberwolf has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** azubieta60 has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** argoneus has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** blikjeham[m] has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** giords[m] has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** jeremy[m] has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** leward[m] has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** menelaos[m] has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** osvaldo[m] has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** fiddeldibu[m] has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** karl[m]123456 has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** yur3shmukcik[m] has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** ad5twoknebor[m] has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** dude[m]1 has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** ircer[m] has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** natmac[m] has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** nolep[m] has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** paulus[m] has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** twom[m] has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** yoltid[m] has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** fonsinchen has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** Guest149 has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** TinoDidriksen has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** eirc has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** Yexo has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** Terkhen has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** Soni has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** orudge has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** V453000 has quit IRC (charon.oftc.net liquid.oftc.net)
16:56:25 *** argoneus2 is now known as argoneus
16:57:00 *** Flygon_ has quit IRC (Quit: A toaster's basically a soldering iron designed to toast bread)
16:57:36 *** Strom has joined #openttd
16:57:36 *** jlx_ has joined #openttd
16:57:36 *** sla_ro|master has joined #openttd
16:57:36 *** thelonelyellipsis[m] has joined #openttd
16:57:36 *** jedavies has joined #openttd
16:57:36 *** yur3shmukcik[m] has joined #openttd
16:57:36 *** yoltid[m] has joined #openttd
16:57:36 *** twom[m] has joined #openttd
16:57:36 *** paulus[m] has joined #openttd
16:57:36 *** osvaldo[m] has joined #openttd
16:57:36 *** nolep[m] has joined #openttd
16:57:36 *** natmac[m] has joined #openttd
16:57:36 *** menelaos[m] has joined #openttd
16:57:36 *** leward[m] has joined #openttd
16:57:36 *** karl[m]123456 has joined #openttd
16:57:36 *** jeremy[m] has joined #openttd
16:57:36 *** ircer[m] has joined #openttd
16:57:36 *** giords[m] has joined #openttd
16:57:36 *** fiddeldibu[m] has joined #openttd
16:57:36 *** dude[m]1 has joined #openttd
16:57:36 *** blikjeham[m] has joined #openttd
16:57:36 *** ad5twoknebor[m] has joined #openttd
16:57:36 *** Soni has joined #openttd
16:57:36 *** azubieta60 has joined #openttd
16:57:36 *** orudge has joined #openttd
16:57:36 *** Cyberdemon has joined #openttd
16:57:36 *** TinoDidriksen has joined #openttd
16:57:36 *** Yexo has joined #openttd
16:57:36 *** fonsinchen has joined #openttd
16:57:36 *** eirc has joined #openttd
16:57:36 *** Timberwolf has joined #openttd
16:57:36 *** V453000 has joined #openttd
16:57:36 *** Terkhen has joined #openttd
16:57:36 *** liquid.oftc.net sets mode: +ovov orudge orudge Terkhen Terkhen
16:57:36 *** Guest149 has joined #openttd
16:57:36 *** liquid.oftc.net sets mode: +ov Guest149 Guest149
16:57:59 *** crem has joined #openttd
17:01:59 *** crem has quit IRC (charon.oftc.net liquid.oftc.net)
17:01:59 *** Timberwolf has quit IRC (charon.oftc.net liquid.oftc.net)
17:01:59 *** Cyberdemon has quit IRC (charon.oftc.net liquid.oftc.net)
17:01:59 *** blikjeham[m] has quit IRC (charon.oftc.net liquid.oftc.net)
17:01:59 *** giords[m] has quit IRC (charon.oftc.net liquid.oftc.net)
17:01:59 *** jeremy[m] has quit IRC (charon.oftc.net liquid.oftc.net)
17:01:59 *** leward[m] has quit IRC (charon.oftc.net liquid.oftc.net)
17:01:59 *** thelonelyellipsis[m] has quit IRC (charon.oftc.net liquid.oftc.net)
17:01:59 *** jlx_ has quit IRC (charon.oftc.net liquid.oftc.net)
17:01:59 *** jedavies has quit IRC (charon.oftc.net liquid.oftc.net)
17:01:59 *** fiddeldibu[m] has quit IRC (charon.oftc.net liquid.oftc.net)
17:01:59 *** osvaldo[m] has quit IRC (charon.oftc.net liquid.oftc.net)
17:01:59 *** azubieta60 has quit IRC (charon.oftc.net liquid.oftc.net)
17:01:59 *** Strom has quit IRC (charon.oftc.net liquid.oftc.net)
17:01:59 *** fonsinchen has quit IRC (charon.oftc.net liquid.oftc.net)
17:01:59 *** yur3shmukcik[m] has quit IRC (charon.oftc.net liquid.oftc.net)
17:01:59 *** eirc has quit IRC (charon.oftc.net liquid.oftc.net)
17:01:59 *** Guest149 has quit IRC (charon.oftc.net liquid.oftc.net)
17:01:59 *** ad5twoknebor[m] has quit IRC (charon.oftc.net liquid.oftc.net)
17:01:59 *** dude[m]1 has quit IRC (charon.oftc.net liquid.oftc.net)
17:01:59 *** ircer[m] has quit IRC (charon.oftc.net liquid.oftc.net)
17:01:59 *** karl[m]123456 has quit IRC (charon.oftc.net liquid.oftc.net)
17:01:59 *** menelaos[m] has quit IRC (charon.oftc.net liquid.oftc.net)
17:01:59 *** natmac[m] has quit IRC (charon.oftc.net liquid.oftc.net)
17:01:59 *** nolep[m] has quit IRC (charon.oftc.net liquid.oftc.net)
17:01:59 *** paulus[m] has quit IRC (charon.oftc.net liquid.oftc.net)
17:01:59 *** twom[m] has quit IRC (charon.oftc.net liquid.oftc.net)
17:01:59 *** yoltid[m] has quit IRC (charon.oftc.net liquid.oftc.net)
17:01:59 *** TinoDidriksen has quit IRC (charon.oftc.net liquid.oftc.net)
17:01:59 *** Soni has quit IRC (charon.oftc.net liquid.oftc.net)
17:01:59 *** Terkhen has quit IRC (charon.oftc.net liquid.oftc.net)
17:01:59 *** Yexo has quit IRC (charon.oftc.net liquid.oftc.net)
17:01:59 *** V453000 has quit IRC (charon.oftc.net liquid.oftc.net)
17:01:59 *** orudge has quit IRC (charon.oftc.net liquid.oftc.net)
17:01:59 *** sla_ro|master has quit IRC (charon.oftc.net liquid.oftc.net)
17:03:06 *** crem has joined #openttd
17:03:06 *** Strom has joined #openttd
17:03:06 *** jlx_ has joined #openttd
17:03:06 *** sla_ro|master has joined #openttd
17:03:06 *** thelonelyellipsis[m] has joined #openttd
17:03:06 *** jedavies has joined #openttd
17:03:06 *** yur3shmukcik[m] has joined #openttd
17:03:06 *** yoltid[m] has joined #openttd
17:03:06 *** twom[m] has joined #openttd
17:03:06 *** paulus[m] has joined #openttd
17:03:06 *** osvaldo[m] has joined #openttd
17:03:06 *** nolep[m] has joined #openttd
17:03:06 *** natmac[m] has joined #openttd
17:03:06 *** menelaos[m] has joined #openttd
17:03:06 *** leward[m] has joined #openttd
17:03:06 *** karl[m]123456 has joined #openttd
17:03:06 *** jeremy[m] has joined #openttd
17:03:06 *** ircer[m] has joined #openttd
17:03:06 *** giords[m] has joined #openttd
17:03:06 *** fiddeldibu[m] has joined #openttd
17:03:06 *** dude[m]1 has joined #openttd
17:03:06 *** blikjeham[m] has joined #openttd
17:03:06 *** ad5twoknebor[m] has joined #openttd
17:03:06 *** Soni has joined #openttd
17:03:06 *** azubieta60 has joined #openttd
17:03:06 *** orudge has joined #openttd
17:03:06 *** Cyberdemon has joined #openttd
17:03:06 *** TinoDidriksen has joined #openttd
17:03:06 *** Yexo has joined #openttd
17:03:06 *** fonsinchen has joined #openttd
17:03:06 *** eirc has joined #openttd
17:03:06 *** Timberwolf has joined #openttd
17:03:06 *** V453000 has joined #openttd
17:03:06 *** Terkhen has joined #openttd
17:03:06 *** liquid.oftc.net sets mode: +ovov orudge orudge Terkhen Terkhen
17:03:06 *** Guest149 has joined #openttd
17:03:06 *** liquid.oftc.net sets mode: +ov Guest149 Guest149
17:18:34 *** Timberwolf has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:34 *** Cyberdemon has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:34 *** blikjeham[m] has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:34 *** giords[m] has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:34 *** jeremy[m] has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:34 *** leward[m] has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:34 *** thelonelyellipsis[m] has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:34 *** jlx_ has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:34 *** crem has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:34 *** jedavies has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:34 *** fiddeldibu[m] has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:34 *** osvaldo[m] has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:34 *** azubieta60 has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:34 *** Strom has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:34 *** fonsinchen has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:34 *** yur3shmukcik[m] has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:34 *** eirc has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:34 *** Guest149 has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:34 *** ad5twoknebor[m] has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:34 *** dude[m]1 has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:34 *** ircer[m] has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:34 *** karl[m]123456 has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:34 *** menelaos[m] has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:34 *** natmac[m] has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:34 *** nolep[m] has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:34 *** paulus[m] has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:34 *** twom[m] has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:34 *** yoltid[m] has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:34 *** TinoDidriksen has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:34 *** Soni has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:34 *** Terkhen has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:34 *** Yexo has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:34 *** V453000 has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:34 *** orudge has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:34 *** sla_ro|master has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:18:50 *** crem has joined #openttd
17:18:50 *** Strom has joined #openttd
17:18:50 *** jlx_ has joined #openttd
17:18:50 *** sla_ro|master has joined #openttd
17:18:50 *** thelonelyellipsis[m] has joined #openttd
17:18:50 *** jedavies has joined #openttd
17:18:50 *** yur3shmukcik[m] has joined #openttd
17:18:50 *** yoltid[m] has joined #openttd
17:18:50 *** twom[m] has joined #openttd
17:18:50 *** paulus[m] has joined #openttd
17:18:50 *** osvaldo[m] has joined #openttd
17:18:50 *** nolep[m] has joined #openttd
17:18:50 *** natmac[m] has joined #openttd
17:18:50 *** menelaos[m] has joined #openttd
17:18:50 *** leward[m] has joined #openttd
17:18:50 *** karl[m]123456 has joined #openttd
17:18:50 *** jeremy[m] has joined #openttd
17:18:50 *** ircer[m] has joined #openttd
17:18:50 *** giords[m] has joined #openttd
17:18:50 *** fiddeldibu[m] has joined #openttd
17:18:50 *** dude[m]1 has joined #openttd
17:18:50 *** blikjeham[m] has joined #openttd
17:18:50 *** ad5twoknebor[m] has joined #openttd
17:18:50 *** Soni has joined #openttd
17:18:50 *** azubieta60 has joined #openttd
17:18:50 *** orudge has joined #openttd
17:18:50 *** Cyberdemon has joined #openttd
17:18:50 *** TinoDidriksen has joined #openttd
17:18:50 *** Yexo has joined #openttd
17:18:50 *** fonsinchen has joined #openttd
17:18:50 *** eirc has joined #openttd
17:18:50 *** Timberwolf has joined #openttd
17:18:50 *** V453000 has joined #openttd
17:18:50 *** Terkhen has joined #openttd
17:18:50 *** liquid.oftc.net sets mode: +ovov orudge orudge Terkhen Terkhen
17:18:50 *** Guest149 has joined #openttd
17:18:50 *** liquid.oftc.net sets mode: +ov Guest149 Guest149
17:21:53 <DorpsGek> [OpenTTD/team] glx22 commented on issue #286: [es_ES] Translator access request https://git.io/J9soW
17:27:27 *** Cacodemon has joined #openttd
17:28:22 *** Cyberdemon has quit IRC (Remote host closed the connection)
17:29:14 *** Timberwolf has quit IRC (charon.oftc.net liquid.oftc.net)
17:29:14 *** blikjeham[m] has quit IRC (charon.oftc.net liquid.oftc.net)
17:29:14 *** giords[m] has quit IRC (charon.oftc.net liquid.oftc.net)
17:29:14 *** jeremy[m] has quit IRC (charon.oftc.net liquid.oftc.net)
17:29:14 *** leward[m] has quit IRC (charon.oftc.net liquid.oftc.net)
17:29:14 *** thelonelyellipsis[m] has quit IRC (charon.oftc.net liquid.oftc.net)
17:29:14 *** jlx_ has quit IRC (charon.oftc.net liquid.oftc.net)
17:29:14 *** crem has quit IRC (charon.oftc.net liquid.oftc.net)
17:29:14 *** jedavies has quit IRC (charon.oftc.net liquid.oftc.net)
17:29:14 *** fiddeldibu[m] has quit IRC (charon.oftc.net liquid.oftc.net)
17:29:14 *** osvaldo[m] has quit IRC (charon.oftc.net liquid.oftc.net)
17:29:14 *** azubieta60 has quit IRC (charon.oftc.net liquid.oftc.net)
17:29:14 *** Strom has quit IRC (charon.oftc.net liquid.oftc.net)
17:29:14 *** fonsinchen has quit IRC (charon.oftc.net liquid.oftc.net)
17:29:14 *** yur3shmukcik[m] has quit IRC (charon.oftc.net liquid.oftc.net)
17:29:14 *** eirc has quit IRC (charon.oftc.net liquid.oftc.net)
17:29:14 *** Guest149 has quit IRC (charon.oftc.net liquid.oftc.net)
17:29:14 *** ad5twoknebor[m] has quit IRC (charon.oftc.net liquid.oftc.net)
17:29:14 *** dude[m]1 has quit IRC (charon.oftc.net liquid.oftc.net)
17:29:14 *** ircer[m] has quit IRC (charon.oftc.net liquid.oftc.net)
17:29:14 *** karl[m]123456 has quit IRC (charon.oftc.net liquid.oftc.net)
17:29:14 *** menelaos[m] has quit IRC (charon.oftc.net liquid.oftc.net)
17:29:14 *** natmac[m] has quit IRC (charon.oftc.net liquid.oftc.net)
17:29:14 *** nolep[m] has quit IRC (charon.oftc.net liquid.oftc.net)
17:29:14 *** paulus[m] has quit IRC (charon.oftc.net liquid.oftc.net)
17:29:14 *** twom[m] has quit IRC (charon.oftc.net liquid.oftc.net)
17:29:14 *** yoltid[m] has quit IRC (charon.oftc.net liquid.oftc.net)
17:29:14 *** TinoDidriksen has quit IRC (charon.oftc.net liquid.oftc.net)
17:29:14 *** Soni has quit IRC (charon.oftc.net liquid.oftc.net)
17:29:14 *** Terkhen has quit IRC (charon.oftc.net liquid.oftc.net)
17:29:14 *** Yexo has quit IRC (charon.oftc.net liquid.oftc.net)
17:29:14 *** V453000 has quit IRC (charon.oftc.net liquid.oftc.net)
17:29:14 *** orudge has quit IRC (charon.oftc.net liquid.oftc.net)
17:29:14 *** sla_ro|master has quit IRC (charon.oftc.net liquid.oftc.net)
17:31:02 *** crem has joined #openttd
17:31:02 *** Strom has joined #openttd
17:31:02 *** jlx_ has joined #openttd
17:31:02 *** sla_ro|master has joined #openttd
17:31:02 *** thelonelyellipsis[m] has joined #openttd
17:31:02 *** jedavies has joined #openttd
17:31:02 *** yur3shmukcik[m] has joined #openttd
17:31:02 *** yoltid[m] has joined #openttd
17:31:02 *** twom[m] has joined #openttd
17:31:02 *** paulus[m] has joined #openttd
17:31:02 *** osvaldo[m] has joined #openttd
17:31:02 *** nolep[m] has joined #openttd
17:31:02 *** natmac[m] has joined #openttd
17:31:02 *** menelaos[m] has joined #openttd
17:31:02 *** leward[m] has joined #openttd
17:31:02 *** karl[m]123456 has joined #openttd
17:31:02 *** jeremy[m] has joined #openttd
17:31:02 *** ircer[m] has joined #openttd
17:31:02 *** giords[m] has joined #openttd
17:31:02 *** fiddeldibu[m] has joined #openttd
17:31:02 *** dude[m]1 has joined #openttd
17:31:02 *** blikjeham[m] has joined #openttd
17:31:02 *** ad5twoknebor[m] has joined #openttd
17:31:02 *** Soni has joined #openttd
17:31:02 *** azubieta60 has joined #openttd
17:31:02 *** orudge has joined #openttd
17:31:02 *** TinoDidriksen has joined #openttd
17:31:02 *** Yexo has joined #openttd
17:31:02 *** fonsinchen has joined #openttd
17:31:02 *** eirc has joined #openttd
17:31:02 *** Timberwolf has joined #openttd
17:31:02 *** V453000 has joined #openttd
17:31:02 *** Terkhen has joined #openttd
17:31:02 *** liquid.oftc.net sets mode: +ovov orudge orudge Terkhen Terkhen
17:31:02 *** Guest149 has joined #openttd
17:31:02 *** liquid.oftc.net sets mode: +ov Guest149 Guest149
17:31:34 *** Wormnest has joined #openttd
17:48:29 <TrueBrain> meh, function support is annoying .. means I need to be able to clone objects ..
17:48:32 <TrueBrain> a function might be used more than once
17:48:40 <TrueBrain> and so for inlining I need the ability to clone :P
18:03:00 *** Gustavo6046 has joined #openttd
18:03:39 <TrueBrain> right, that works .. now conditions .. pam pam pammm
18:03:52 <TrueBrain> meh, not tonight :)
18:06:09 *** gelignite has joined #openttd
18:10:30 * andythenorth just got on a roll with FIRS :P
18:50:10 <DorpsGek> [OpenTTD/OpenTTD] DorpsGek pushed 1 commits to master https://git.io/J9s7B
18:50:11 <DorpsGek> - Update: Translations from eints (by translators)
19:02:53 <andythenorth> hmm
19:38:52 <andythenorth> code is fun
20:12:44 *** Gustavo6046_ has joined #openttd
20:13:17 *** Gustavo6046 has quit IRC (Remote host closed the connection)
20:34:29 *** Gustavo6046_ has quit IRC (Quit: Leaving)
20:34:36 *** Gustavo6046 has joined #openttd
20:37:45 <peter1138> hm
20:42:22 <andythenorth> yes
21:16:57 *** frosch123 has quit IRC (Quit: be yourself, except: if you have the opportunity to be a unicorn, then be a unicorn)
21:32:21 *** jottyfan has quit IRC (Quit: jottyfan)
21:44:44 *** Timberwolf has quit IRC (charon.oftc.net liquid.oftc.net)
21:44:44 *** blikjeham[m] has quit IRC (charon.oftc.net liquid.oftc.net)
21:44:44 *** giords[m] has quit IRC (charon.oftc.net liquid.oftc.net)
21:44:44 *** jeremy[m] has quit IRC (charon.oftc.net liquid.oftc.net)
21:44:44 *** leward[m] has quit IRC (charon.oftc.net liquid.oftc.net)
21:44:44 *** thelonelyellipsis[m] has quit IRC (charon.oftc.net liquid.oftc.net)
21:44:44 *** jlx_ has quit IRC (charon.oftc.net liquid.oftc.net)
21:44:44 *** crem has quit IRC (charon.oftc.net liquid.oftc.net)
21:44:44 *** jedavies has quit IRC (charon.oftc.net liquid.oftc.net)
21:44:44 *** fiddeldibu[m] has quit IRC (charon.oftc.net liquid.oftc.net)
21:44:44 *** osvaldo[m] has quit IRC (charon.oftc.net liquid.oftc.net)
21:44:44 *** azubieta60 has quit IRC (charon.oftc.net liquid.oftc.net)
21:44:44 *** Strom has quit IRC (charon.oftc.net liquid.oftc.net)
21:44:44 *** fonsinchen has quit IRC (charon.oftc.net liquid.oftc.net)
21:44:44 *** yur3shmukcik[m] has quit IRC (charon.oftc.net liquid.oftc.net)
21:44:44 *** eirc has quit IRC (charon.oftc.net liquid.oftc.net)
21:44:44 *** Guest149 has quit IRC (charon.oftc.net liquid.oftc.net)
21:44:44 *** ad5twoknebor[m] has quit IRC (charon.oftc.net liquid.oftc.net)
21:44:44 *** dude[m]1 has quit IRC (charon.oftc.net liquid.oftc.net)
21:44:44 *** ircer[m] has quit IRC (charon.oftc.net liquid.oftc.net)
21:44:44 *** karl[m]123456 has quit IRC (charon.oftc.net liquid.oftc.net)
21:44:44 *** menelaos[m] has quit IRC (charon.oftc.net liquid.oftc.net)
21:44:44 *** natmac[m] has quit IRC (charon.oftc.net liquid.oftc.net)
21:44:44 *** nolep[m] has quit IRC (charon.oftc.net liquid.oftc.net)
21:44:44 *** paulus[m] has quit IRC (charon.oftc.net liquid.oftc.net)
21:44:44 *** twom[m] has quit IRC (charon.oftc.net liquid.oftc.net)
21:44:44 *** yoltid[m] has quit IRC (charon.oftc.net liquid.oftc.net)
21:44:44 *** TinoDidriksen has quit IRC (charon.oftc.net liquid.oftc.net)
21:44:44 *** Soni has quit IRC (charon.oftc.net liquid.oftc.net)
21:44:44 *** Terkhen has quit IRC (charon.oftc.net liquid.oftc.net)
21:44:44 *** Yexo has quit IRC (charon.oftc.net liquid.oftc.net)
21:44:44 *** V453000 has quit IRC (charon.oftc.net liquid.oftc.net)
21:44:44 *** orudge has quit IRC (charon.oftc.net liquid.oftc.net)
21:44:44 *** sla_ro|master has quit IRC (charon.oftc.net liquid.oftc.net)
21:46:09 *** crem has joined #openttd
21:46:09 *** Strom has joined #openttd
21:46:09 *** jlx_ has joined #openttd
21:46:09 *** sla_ro|master has joined #openttd
21:46:09 *** thelonelyellipsis[m] has joined #openttd
21:46:09 *** jedavies has joined #openttd
21:46:09 *** yur3shmukcik[m] has joined #openttd
21:46:09 *** yoltid[m] has joined #openttd
21:46:09 *** twom[m] has joined #openttd
21:46:09 *** paulus[m] has joined #openttd
21:46:09 *** osvaldo[m] has joined #openttd
21:46:09 *** nolep[m] has joined #openttd
21:46:09 *** natmac[m] has joined #openttd
21:46:09 *** menelaos[m] has joined #openttd
21:46:09 *** leward[m] has joined #openttd
21:46:09 *** karl[m]123456 has joined #openttd
21:46:09 *** jeremy[m] has joined #openttd
21:46:09 *** ircer[m] has joined #openttd
21:46:09 *** giords[m] has joined #openttd
21:46:09 *** fiddeldibu[m] has joined #openttd
21:46:09 *** dude[m]1 has joined #openttd
21:46:09 *** blikjeham[m] has joined #openttd
21:46:09 *** ad5twoknebor[m] has joined #openttd
21:46:09 *** Soni has joined #openttd
21:46:09 *** azubieta60 has joined #openttd
21:46:09 *** orudge has joined #openttd
21:46:09 *** TinoDidriksen has joined #openttd
21:46:09 *** Yexo has joined #openttd
21:46:09 *** fonsinchen has joined #openttd
21:46:09 *** eirc has joined #openttd
21:46:09 *** Timberwolf has joined #openttd
21:46:09 *** V453000 has joined #openttd
21:46:09 *** Terkhen has joined #openttd
21:46:09 *** liquid.oftc.net sets mode: +ovov orudge orudge Terkhen Terkhen
21:46:09 *** Guest149 has joined #openttd
21:46:10 *** liquid.oftc.net sets mode: +ov Guest149 Guest149
21:51:33 <peter1138> Hmm, do I have to be foolish tomorrow?
21:51:51 <TrueBrain> only if you want to!
22:01:14 *** Timberwolf has quit IRC (charon.oftc.net liquid.oftc.net)
22:01:14 *** blikjeham[m] has quit IRC (charon.oftc.net liquid.oftc.net)
22:01:14 *** giords[m] has quit IRC (charon.oftc.net liquid.oftc.net)
22:01:14 *** jeremy[m] has quit IRC (charon.oftc.net liquid.oftc.net)
22:01:14 *** leward[m] has quit IRC (charon.oftc.net liquid.oftc.net)
22:01:14 *** thelonelyellipsis[m] has quit IRC (charon.oftc.net liquid.oftc.net)
22:01:14 *** jlx_ has quit IRC (charon.oftc.net liquid.oftc.net)
22:01:14 *** crem has quit IRC (charon.oftc.net liquid.oftc.net)
22:01:14 *** jedavies has quit IRC (charon.oftc.net liquid.oftc.net)
22:01:14 *** fiddeldibu[m] has quit IRC (charon.oftc.net liquid.oftc.net)
22:01:14 *** osvaldo[m] has quit IRC (charon.oftc.net liquid.oftc.net)
22:01:14 *** azubieta60 has quit IRC (charon.oftc.net liquid.oftc.net)
22:01:14 *** Strom has quit IRC (charon.oftc.net liquid.oftc.net)
22:01:14 *** fonsinchen has quit IRC (charon.oftc.net liquid.oftc.net)
22:01:14 *** yur3shmukcik[m] has quit IRC (charon.oftc.net liquid.oftc.net)
22:01:14 *** eirc has quit IRC (charon.oftc.net liquid.oftc.net)
22:01:14 *** Guest149 has quit IRC (charon.oftc.net liquid.oftc.net)
22:01:14 *** ad5twoknebor[m] has quit IRC (charon.oftc.net liquid.oftc.net)
22:01:14 *** dude[m]1 has quit IRC (charon.oftc.net liquid.oftc.net)
22:01:14 *** ircer[m] has quit IRC (charon.oftc.net liquid.oftc.net)
22:01:14 *** karl[m]123456 has quit IRC (charon.oftc.net liquid.oftc.net)
22:01:14 *** menelaos[m] has quit IRC (charon.oftc.net liquid.oftc.net)
22:01:14 *** natmac[m] has quit IRC (charon.oftc.net liquid.oftc.net)
22:01:14 *** nolep[m] has quit IRC (charon.oftc.net liquid.oftc.net)
22:01:14 *** paulus[m] has quit IRC (charon.oftc.net liquid.oftc.net)
22:01:14 *** twom[m] has quit IRC (charon.oftc.net liquid.oftc.net)
22:01:14 *** yoltid[m] has quit IRC (charon.oftc.net liquid.oftc.net)
22:01:14 *** TinoDidriksen has quit IRC (charon.oftc.net liquid.oftc.net)
22:01:14 *** Soni has quit IRC (charon.oftc.net liquid.oftc.net)
22:01:14 *** Terkhen has quit IRC (charon.oftc.net liquid.oftc.net)
22:01:14 *** Yexo has quit IRC (charon.oftc.net liquid.oftc.net)
22:01:14 *** V453000 has quit IRC (charon.oftc.net liquid.oftc.net)
22:01:14 *** orudge has quit IRC (charon.oftc.net liquid.oftc.net)
22:01:14 *** sla_ro|master has quit IRC (charon.oftc.net liquid.oftc.net)
22:02:21 *** crem has joined #openttd
22:02:21 *** Strom has joined #openttd
22:02:21 *** jlx_ has joined #openttd
22:02:21 *** sla_ro|master has joined #openttd
22:02:21 *** thelonelyellipsis[m] has joined #openttd
22:02:21 *** jedavies has joined #openttd
22:02:21 *** yur3shmukcik[m] has joined #openttd
22:02:21 *** yoltid[m] has joined #openttd
22:02:21 *** twom[m] has joined #openttd
22:02:21 *** paulus[m] has joined #openttd
22:02:21 *** osvaldo[m] has joined #openttd
22:02:21 *** nolep[m] has joined #openttd
22:02:21 *** natmac[m] has joined #openttd
22:02:21 *** menelaos[m] has joined #openttd
22:02:21 *** leward[m] has joined #openttd
22:02:21 *** karl[m]123456 has joined #openttd
22:02:21 *** jeremy[m] has joined #openttd
22:02:21 *** ircer[m] has joined #openttd
22:02:21 *** giords[m] has joined #openttd
22:02:21 *** fiddeldibu[m] has joined #openttd
22:02:21 *** dude[m]1 has joined #openttd
22:02:21 *** blikjeham[m] has joined #openttd
22:02:21 *** ad5twoknebor[m] has joined #openttd
22:02:21 *** Soni has joined #openttd
22:02:21 *** azubieta60 has joined #openttd
22:02:21 *** orudge has joined #openttd
22:02:21 *** TinoDidriksen has joined #openttd
22:02:21 *** Yexo has joined #openttd
22:02:21 *** fonsinchen has joined #openttd
22:02:21 *** eirc has joined #openttd
22:02:21 *** Timberwolf has joined #openttd
22:02:21 *** V453000 has joined #openttd
22:02:21 *** Terkhen has joined #openttd
22:02:21 *** liquid.oftc.net sets mode: +ovov orudge orudge Terkhen Terkhen
22:02:21 *** Guest149 has joined #openttd
22:02:21 *** liquid.oftc.net sets mode: +ov Guest149 Guest149
22:04:17 *** Timberwolf has quit IRC (charon.oftc.net liquid.oftc.net)
22:04:17 *** blikjeham[m] has quit IRC (charon.oftc.net liquid.oftc.net)
22:04:17 *** giords[m] has quit IRC (charon.oftc.net liquid.oftc.net)
22:04:17 *** jeremy[m] has quit IRC (charon.oftc.net liquid.oftc.net)
22:04:17 *** leward[m] has quit IRC (charon.oftc.net liquid.oftc.net)
22:04:17 *** thelonelyellipsis[m] has quit IRC (charon.oftc.net liquid.oftc.net)
22:04:17 *** jlx_ has quit IRC (charon.oftc.net liquid.oftc.net)
22:04:17 *** crem has quit IRC (charon.oftc.net liquid.oftc.net)
22:04:17 *** jedavies has quit IRC (charon.oftc.net liquid.oftc.net)
22:04:17 *** fiddeldibu[m] has quit IRC (charon.oftc.net liquid.oftc.net)
22:04:17 *** osvaldo[m] has quit IRC (charon.oftc.net liquid.oftc.net)
22:04:17 *** azubieta60 has quit IRC (charon.oftc.net liquid.oftc.net)
22:04:17 *** Strom has quit IRC (charon.oftc.net liquid.oftc.net)
22:04:17 *** fonsinchen has quit IRC (charon.oftc.net liquid.oftc.net)
22:04:17 *** yur3shmukcik[m] has quit IRC (charon.oftc.net liquid.oftc.net)
22:04:17 *** eirc has quit IRC (charon.oftc.net liquid.oftc.net)
22:04:17 *** Guest149 has quit IRC (charon.oftc.net liquid.oftc.net)
22:04:17 *** ad5twoknebor[m] has quit IRC (charon.oftc.net liquid.oftc.net)
22:04:17 *** dude[m]1 has quit IRC (charon.oftc.net liquid.oftc.net)
22:04:17 *** ircer[m] has quit IRC (charon.oftc.net liquid.oftc.net)
22:04:17 *** karl[m]123456 has quit IRC (charon.oftc.net liquid.oftc.net)
22:04:17 *** menelaos[m] has quit IRC (charon.oftc.net liquid.oftc.net)
22:04:17 *** natmac[m] has quit IRC (charon.oftc.net liquid.oftc.net)
22:04:17 *** nolep[m] has quit IRC (charon.oftc.net liquid.oftc.net)
22:04:17 *** paulus[m] has quit IRC (charon.oftc.net liquid.oftc.net)
22:04:17 *** twom[m] has quit IRC (charon.oftc.net liquid.oftc.net)
22:04:17 *** yoltid[m] has quit IRC (charon.oftc.net liquid.oftc.net)
22:04:17 *** TinoDidriksen has quit IRC (charon.oftc.net liquid.oftc.net)
22:04:17 *** Soni has quit IRC (charon.oftc.net liquid.oftc.net)
22:04:17 *** Terkhen has quit IRC (charon.oftc.net liquid.oftc.net)
22:04:17 *** Yexo has quit IRC (charon.oftc.net liquid.oftc.net)
22:04:17 *** V453000 has quit IRC (charon.oftc.net liquid.oftc.net)
22:04:17 *** orudge has quit IRC (charon.oftc.net liquid.oftc.net)
22:04:17 *** sla_ro|master has quit IRC (charon.oftc.net liquid.oftc.net)
22:04:55 *** crem has joined #openttd
22:04:55 *** Strom has joined #openttd
22:04:55 *** jlx_ has joined #openttd
22:04:55 *** sla_ro|master has joined #openttd
22:04:55 *** thelonelyellipsis[m] has joined #openttd
22:04:55 *** jedavies has joined #openttd
22:04:55 *** yur3shmukcik[m] has joined #openttd
22:04:55 *** yoltid[m] has joined #openttd
22:04:55 *** twom[m] has joined #openttd
22:04:55 *** paulus[m] has joined #openttd
22:04:55 *** osvaldo[m] has joined #openttd
22:04:55 *** nolep[m] has joined #openttd
22:04:55 *** natmac[m] has joined #openttd
22:04:55 *** menelaos[m] has joined #openttd
22:04:55 *** leward[m] has joined #openttd
22:04:55 *** karl[m]123456 has joined #openttd
22:04:55 *** jeremy[m] has joined #openttd
22:04:55 *** ircer[m] has joined #openttd
22:04:55 *** giords[m] has joined #openttd
22:04:55 *** fiddeldibu[m] has joined #openttd
22:04:55 *** dude[m]1 has joined #openttd
22:04:55 *** blikjeham[m] has joined #openttd
22:04:55 *** ad5twoknebor[m] has joined #openttd
22:04:55 *** Soni has joined #openttd
22:04:55 *** azubieta60 has joined #openttd
22:04:55 *** orudge has joined #openttd
22:04:55 *** TinoDidriksen has joined #openttd
22:04:55 *** Yexo has joined #openttd
22:04:55 *** fonsinchen has joined #openttd
22:04:55 *** eirc has joined #openttd
22:04:55 *** Timberwolf has joined #openttd
22:04:55 *** V453000 has joined #openttd
22:04:55 *** Terkhen has joined #openttd
22:04:55 *** liquid.oftc.net sets mode: +ovov orudge orudge Terkhen Terkhen
22:04:55 *** Guest149 has joined #openttd
22:04:55 *** liquid.oftc.net sets mode: +ov Guest149 Guest149
22:05:01 <LordAro> OFTC having a bad time this evening
22:06:16 <TrueBrain> you see that rarely these days
22:12:16 <supermop_Home> could i add base set sprite numbers to this? https://newgrf-specs.tt-wiki.net/wiki/NML:List_of_default_house_properties
22:54:00 *** _aD has joined #openttd
23:37:27 *** sla_ro|master has quit IRC ()
23:58:38 *** andythenorth has quit IRC (Quit: andythenorth)