IRC logs for #openttd on OFTC at 2023-08-21
            
00:07:56 *** virtualrandomnumber has joined #openttd
00:08:11 *** virtualrandomnumber has quit IRC ()
02:07:01 *** Wormnest has quit IRC (Quit: Leaving)
02:15:38 *** D-HUND has joined #openttd
02:19:00 *** debdog has quit IRC (Ping timeout: 480 seconds)
02:51:44 *** tokai|noir has joined #openttd
02:51:44 *** ChanServ sets mode: +v tokai|noir
02:58:35 *** tokai has quit IRC (Ping timeout: 480 seconds)
03:42:20 *** keikoz has joined #openttd
03:53:50 *** esselfe has quit IRC (Ping timeout: 480 seconds)
04:19:46 *** D-HUND is now known as debdog
05:52:47 <andythenorth> thanks
05:53:21 <andythenorth> I've rebased to include 11222, hopefully crashes stop 🙂
05:59:42 *** Deep3D has quit IRC (Ping timeout: 480 seconds)
07:32:34 <kolcon> is there a sample newgrf showing how to properly make these multi part ships in newgrf? this https://jgrennison.github.io/OpenTTD-patches/newgrf-additions-nml.html is a bit too brief
07:36:07 *** berndj has quit IRC (Read error: Connection reset by peer)
07:36:59 *** berndj has joined #openttd
07:44:51 *** Wolf01 has joined #openttd
07:45:46 *** Deep3D has joined #openttd
07:49:31 <andythenorth> kolcon have you got a ship grf to modify already?
07:53:52 *** Deep3D has quit IRC (Ping timeout: 480 seconds)
08:53:57 *** _aD has joined #openttd
09:38:04 <kolcon> andythenorth: yes
09:56:03 *** Deep3D has joined #openttd
10:06:40 <andythenorth> does it use nml?
10:07:25 <kolcon> yes
10:07:48 <kolcon> it's a modified fish-2.0.3
10:12:17 <andythenorth> ooof FISH
10:14:39 <andythenorth> you need a switch to add articulated parts, this one is for trains, but you can modify
10:14:39 <andythenorth> // add the units to articulated consist
10:14:39 <andythenorth> switch (FEAT_TRAINS, SELF, chinook_variant_0_articulated_cb_switch, extra_callback_info1) {
10:14:39 <andythenorth> 0: return chinook;
10:14:39 <andythenorth> 1: return chinook_unit_1_variant_0;
10:14:40 <andythenorth> return CB_RESULT_NO_MORE_ARTICULATED_PARTS;
10:14:40 <andythenorth> }
10:15:04 <andythenorth> then chain it from the graphics block
10:15:37 <andythenorth> graphics {
10:15:37 <andythenorth> default: chinook_switch_graphics;
10:15:37 <andythenorth> purchase: chinook_switch_graphics_purchase;
10:15:37 <andythenorth> articulated_part: chinook_variant_2_articulated_cb_switch;
10:15:37 <andythenorth> }
10:15:43 <andythenorth> ^ example, basic
10:16:20 <andythenorth> I can't remember how FISH works, but eh
10:18:34 <DorpsGek> [OpenTTD/OpenTTD] andythenorth commented on pull request #11141: Add: [Script] Game script control of industry production level. https://github.com/OpenTTD/OpenTTD/pull/11141#issuecomment-1686052322
10:21:26 * andythenorth waves gratefully at the people who added deterministic random for GS
10:21:34 <andythenorth> makes testing GS so much easier
10:31:47 <kolcon> andythenorth: thanks, the page above mentions it works differently for the ships (probably), "Additional ship parts are not used for graphics, they are only used for additional cargo capacity, the default graphics chain is unused.". also, there is a new callback "refit_part_name".
10:38:58 <andythenorth> all the callbacks are caleld from the graphics block
10:39:08 <andythenorth> which can be misleading
10:40:14 <andythenorth> you can ignore the refit_part_name callback initially
10:41:05 <andythenorth> Are you modifying FISH nml directly? Or do you have whatever templates I used for FISH?
10:42:37 <DorpsGek> [OpenTTD/OpenTTD] glx22 merged pull request #11217: Fix #11215: Assert in NewGRF parameters window (manual parameter mode) https://github.com/OpenTTD/OpenTTD/pull/11217
10:42:40 <DorpsGek> [OpenTTD/OpenTTD] glx22 closed issue #11215: [Crash]: When clicking a parameter line in the NewGRF parameter window in manual parameters mode https://github.com/OpenTTD/OpenTTD/issues/11215
10:43:59 <kolcon> I have both. I guess the most relevant part is this? https://pastebin.com/wXLVLhZw
10:52:30 <andythenorth> no, that's irrelevant initially 🙂
10:52:59 <andythenorth> you might want it later, but I'm not sure how subtypes work with articulated vehicles (in vanilla OpenTTD, they don't really)
11:37:20 <andythenorth> anyone want to review this? 🙂 Does everything I expected it to https://github.com/OpenTTD/OpenTTD/pull/11141
11:37:32 <andythenorth> be nice if it was merged
11:52:06 <DorpsGek> [OpenTTD/OpenTTD] 2TallTyler commented on pull request #11141: Add: [Script] Game script control of industry production level. https://github.com/OpenTTD/OpenTTD/pull/11141#pullrequestreview-1586820042
12:58:52 <kolcon> I would like to get into AI development, any good tutorials you can recommend?
12:59:17 <kolcon> I realized I am playing the game always the same way so why not scripting it :D
13:36:57 <andythenorth> Think most people start with Zuu’s boilerplate AI / GS
13:58:41 *** Wolf01 has quit IRC (Quit: Once again the world is quick to bury me.)
14:14:12 *** gelignite has joined #openttd
15:19:34 *** nielsm has joined #openttd
15:26:48 <andythenorth> MinimalGS https://www.tt-forums.net/viewtopic.php?t=62163
15:26:52 <andythenorth> or there's an AI version
15:43:07 <andythenorth> hmm
15:43:11 <andythenorth> could we have track objects?
15:43:25 <andythenorth> buildings that can be built over roads / rails etc
15:43:47 <andythenorth> currently grf authors use dubious overlay tricks for this
15:49:38 <brickblock19280> waypoints can mostly be used for this
15:49:49 <brickblock19280> but I wouldn't oposi
15:50:27 <brickblock19280> *opposed
15:50:56 *** _aD has quit IRC (Ping timeout: 480 seconds)
15:56:53 <andythenorth> I would envisage it just as a set of flags for which route types can be built over
15:57:02 <andythenorth> and an optional callback to check the trackbits on the tile
16:14:30 *** Wormnest has joined #openttd
16:51:06 *** HerzogDeXtEr has joined #openttd
16:55:04 <Eddi|zuHause> not enough map bits
16:56:39 <andythenorth> we could get some more
16:56:43 <andythenorth> it's not the first time 😛
16:57:11 *** Extrems has quit IRC (reticulum.oftc.net resistance.oftc.net)
16:57:11 *** izhirahider has quit IRC (reticulum.oftc.net resistance.oftc.net)
16:57:11 *** colde has quit IRC (reticulum.oftc.net resistance.oftc.net)
16:57:11 *** mindlesstux has quit IRC (reticulum.oftc.net resistance.oftc.net)
16:57:11 *** dwfreed has quit IRC (reticulum.oftc.net resistance.oftc.net)
16:57:11 *** felix has quit IRC (reticulum.oftc.net resistance.oftc.net)
16:57:11 *** Kitrana1 has quit IRC (reticulum.oftc.net resistance.oftc.net)
16:57:11 *** nebulabc_ has quit IRC (reticulum.oftc.net resistance.oftc.net)
16:57:11 *** Ttech has quit IRC (reticulum.oftc.net resistance.oftc.net)
16:57:11 *** twpol has quit IRC (reticulum.oftc.net resistance.oftc.net)
16:57:11 *** Wormnest has quit IRC (reticulum.oftc.net resistance.oftc.net)
16:57:11 *** asymptotically2 has quit IRC (reticulum.oftc.net resistance.oftc.net)
16:57:11 *** greeter has quit IRC (reticulum.oftc.net resistance.oftc.net)
16:57:11 *** xT2 has quit IRC (reticulum.oftc.net resistance.oftc.net)
16:57:11 *** rightnut has quit IRC (reticulum.oftc.net resistance.oftc.net)
16:57:11 *** k-man has quit IRC (reticulum.oftc.net resistance.oftc.net)
16:57:11 *** APTX has quit IRC (reticulum.oftc.net resistance.oftc.net)
16:57:11 *** Smedles_ has quit IRC (reticulum.oftc.net resistance.oftc.net)
16:57:15 *** Wormnest has joined #openttd
16:57:15 *** k-man has joined #openttd
16:57:15 *** felix has joined #openttd
16:57:15 *** Smedles_ has joined #openttd
16:57:15 *** Extrems has joined #openttd
16:57:15 *** asymptotically2 has joined #openttd
16:57:15 *** Kitrana1 has joined #openttd
16:57:15 *** izhirahider has joined #openttd
16:57:15 *** colde has joined #openttd
16:57:15 *** mindlesstux has joined #openttd
16:57:15 *** dwfreed has joined #openttd
16:57:15 *** nebulabc_ has joined #openttd
16:57:15 *** APTX has joined #openttd
16:57:15 *** greeter has joined #openttd
16:57:15 *** Ttech has joined #openttd
16:57:15 *** twpol has joined #openttd
16:57:15 *** rightnut has joined #openttd
16:57:15 *** xT2 has joined #openttd
16:57:44 *** _aD has joined #openttd
17:01:11 *** colde has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** izhirahider has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** Extrems has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** mindlesstux has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** dwfreed has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** twpol has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** Kitrana1 has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** felix has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** nebulabc_ has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** Ttech has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** xT2 has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** Wormnest has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** rightnut has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** asymptotically2 has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** greeter has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** APTX has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** k-man has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** Smedles_ has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** gelignite has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** Deep3D has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** NGC3982 has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** Alkel_U3 has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** vista_narvas[m] has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** soylent_cow[m] has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** shedidthedog[m] has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** giords[m] has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** CornsMcGowan[m] has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** cjmonagle[m] has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** Bilb[m] has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** patricia[m]1 has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** linda[m]1 has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** elliot[m] has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** igor[m] has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** freu[m] has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** wormnest[m] has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** patrick[m]12 has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** Venemo has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** Artea has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** moll has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** murr4y has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** LordAro has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** fonsinchen has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** Xaroth has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** Hirundo has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** tneo has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** blathijs has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:11 *** Ammler has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** XeryusTC has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** Yexo has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** Hazzard has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** michi_cc has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** herms has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** Azusa has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** Heiki has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** FLHerne has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** argoneus has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** eirc has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** pikaHeiki has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** zzy2357[m] has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** Guest8201 has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** rudolfs[m] has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** NekomimiGunner18[m] has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** luk3Z[m] has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** joey[m]1 has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** jeremy[m]1 has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** hamstonkid[m] has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** gretel[m] has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** citronbleuv[m] has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** audunm[m] has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** jact[m] has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** fiddeldibu[m] has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** amal[m] has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** menelaos[m] has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** karl[m]12 has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** kstar892[m] has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** pickpacket has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** dihedral has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** Timberwolf has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** urdh has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** _aD has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** HerzogDeXtEr has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** nielsm has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** jinks has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** SergioMassa[m] has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** milek7 has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** Eddi|zuHause has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** ufo-piloot has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** SpComb has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** Gadg8eer[m] has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** thelonelyellipsis[m] has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** Farrokh[m] has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** philip[m]123 has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:31 *** magdalena[m] has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:37 *** gdown has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:37 *** EmeraldSnorlax[m] has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:37 *** blikjeham[m] has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:37 *** JamesRoss[m] has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:37 *** thomas[m]1234567 has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:37 *** calbasi[m]1 has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:37 *** nolep[m] has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:37 *** jlx_ has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:37 *** Rubidium has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:37 *** m1cr0man has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:37 *** Westie has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:37 *** Mek has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:37 *** Hobbyboy has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:37 *** Webster has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:37 *** Osai has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:37 *** avdg has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:37 *** SmatZ has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:37 *** Heili has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:37 *** ckb has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:37 *** welterde has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:01:37 *** Guest6892 has quit IRC (coulomb.oftc.net reticulum.oftc.net)
17:02:47 *** _aD has joined #openttd
17:02:47 *** xT2 has joined #openttd
17:02:47 *** rightnut has joined #openttd
17:02:47 *** twpol has joined #openttd
17:02:47 *** Ttech has joined #openttd
17:02:47 *** greeter has joined #openttd
17:02:47 *** APTX has joined #openttd
17:02:47 *** nebulabc_ has joined #openttd
17:02:47 *** dwfreed has joined #openttd
17:02:47 *** mindlesstux has joined #openttd
17:02:47 *** colde has joined #openttd
17:02:47 *** izhirahider has joined #openttd
17:02:47 *** Kitrana1 has joined #openttd
17:02:47 *** asymptotically2 has joined #openttd
17:02:47 *** Extrems has joined #openttd
17:02:47 *** Smedles_ has joined #openttd
17:02:47 *** felix has joined #openttd
17:02:47 *** k-man has joined #openttd
17:02:47 *** Wormnest has joined #openttd
17:02:47 *** HerzogDeXtEr has joined #openttd
17:02:47 *** nielsm has joined #openttd
17:02:47 *** gelignite has joined #openttd
17:02:47 *** Deep3D has joined #openttd
17:02:47 *** michi_cc has joined #openttd
17:02:47 *** SergioMassa[m] has joined #openttd
17:02:47 *** jinks has joined #openttd
17:02:47 *** NGC3982 has joined #openttd
17:02:47 *** milek7 has joined #openttd
17:02:47 *** herms has joined #openttd
17:02:47 *** Azusa has joined #openttd
17:02:47 *** Alkel_U3 has joined #openttd
17:02:47 *** Eddi|zuHause has joined #openttd
17:02:47 *** Heiki has joined #openttd
17:02:47 *** pikaHeiki has joined #openttd
17:02:47 *** FLHerne has joined #openttd
17:02:47 *** argoneus has joined #openttd
17:02:47 *** ufo-piloot has joined #openttd
17:02:47 *** eirc has joined #openttd
17:02:47 *** SpComb has joined #openttd
17:02:47 *** zzy2357[m] has joined #openttd
17:02:47 *** Guest8201 has joined #openttd
17:02:47 *** wormnest[m] has joined #openttd
17:02:47 *** vista_narvas[m] has joined #openttd
17:02:47 *** JamesRoss[m] has joined #openttd
17:02:47 *** Gadg8eer[m] has joined #openttd
17:02:47 *** thomas[m]1234567 has joined #openttd
17:02:47 *** thelonelyellipsis[m] has joined #openttd
17:02:47 *** charon.oftc.net sets mode: +v michi_cc
17:02:47 *** soylent_cow[m] has joined #openttd
17:02:47 *** Farrokh[m] has joined #openttd
17:02:47 *** shedidthedog[m] has joined #openttd
17:02:47 *** rudolfs[m] has joined #openttd
17:02:47 *** philip[m]123 has joined #openttd
17:02:47 *** patrick[m]12 has joined #openttd
17:02:47 *** patricia[m]1 has joined #openttd
17:02:47 *** nolep[m] has joined #openttd
17:02:47 *** NekomimiGunner18[m] has joined #openttd
17:02:47 *** menelaos[m] has joined #openttd
17:02:47 *** magdalena[m] has joined #openttd
17:02:47 *** luk3Z[m] has joined #openttd
17:02:47 *** linda[m]1 has joined #openttd
17:02:47 *** kstar892[m] has joined #openttd
17:02:47 *** karl[m]12 has joined #openttd
17:02:47 *** joey[m]1 has joined #openttd
17:02:47 *** jeremy[m]1 has joined #openttd
17:02:47 *** jact[m] has joined #openttd
17:02:47 *** igor[m] has joined #openttd
17:02:47 *** hamstonkid[m] has joined #openttd
17:02:47 *** gretel[m] has joined #openttd
17:02:47 *** giords[m] has joined #openttd
17:02:47 *** freu[m] has joined #openttd
17:02:47 *** gdown has joined #openttd
17:02:47 *** fiddeldibu[m] has joined #openttd
17:02:47 *** EmeraldSnorlax[m] has joined #openttd
17:02:47 *** elliot[m] has joined #openttd
17:02:47 *** CornsMcGowan[m] has joined #openttd
17:02:47 *** cjmonagle[m] has joined #openttd
17:02:47 *** citronbleuv[m] has joined #openttd
17:02:47 *** blikjeham[m] has joined #openttd
17:02:47 *** Bilb[m] has joined #openttd
17:02:47 *** audunm[m] has joined #openttd
17:02:47 *** calbasi[m]1 has joined #openttd
17:02:47 *** amal[m] has joined #openttd
17:02:47 *** Artea has joined #openttd
17:02:47 *** Venemo has joined #openttd
17:02:47 *** pickpacket has joined #openttd
17:02:47 *** jlx_ has joined #openttd
17:02:47 *** dihedral has joined #openttd
17:02:47 *** Timberwolf has joined #openttd
17:02:47 *** Rubidium has joined #openttd
17:02:47 *** m1cr0man has joined #openttd
17:02:47 *** welterde has joined #openttd
17:02:47 *** ckb has joined #openttd
17:02:47 *** Osai has joined #openttd
17:02:47 *** avdg has joined #openttd
17:02:47 *** charon.oftc.net sets mode: +ov Rubidium Rubidium
17:02:47 *** SmatZ has joined #openttd
17:02:47 *** Guest6892 has joined #openttd
17:02:47 *** Heili has joined #openttd
17:02:47 *** Webster has joined #openttd
17:02:47 *** Hobbyboy has joined #openttd
17:02:47 *** Mek has joined #openttd
17:02:47 *** Westie has joined #openttd
17:02:47 *** urdh has joined #openttd
17:02:47 *** Xaroth has joined #openttd
17:02:47 *** blathijs has joined #openttd
17:02:47 *** moll has joined #openttd
17:02:47 *** Hazzard has joined #openttd
17:02:47 *** Hirundo has joined #openttd
17:02:47 *** XeryusTC has joined #openttd
17:03:17 *** fonsinchen has joined #openttd
17:03:17 *** Ammler has joined #openttd
17:03:17 *** tneo has joined #openttd
17:03:17 *** Yexo has joined #openttd
17:03:17 *** LordAro has joined #openttd
17:03:17 *** murr4y has joined #openttd
17:03:17 *** charon.oftc.net sets mode: +ov blathijs blathijs
17:07:08 *** moll has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:07:08 *** Artea has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:07:08 *** Bilb[m] has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:07:08 *** cjmonagle[m] has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:07:08 *** CornsMcGowan[m] has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:07:08 *** freu[m] has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:07:08 *** giords[m] has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:07:08 *** shedidthedog[m] has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:07:08 *** soylent_cow[m] has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:07:08 *** vista_narvas[m] has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:07:08 *** Alkel_U3 has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:07:08 *** NGC3982 has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:07:08 *** patrick[m]12 has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:07:08 *** elliot[m] has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:07:08 *** igor[m] has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:07:08 *** linda[m]1 has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:07:08 *** patricia[m]1 has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:07:08 *** wormnest[m] has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:07:08 *** murr4y has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:07:08 *** Deep3D has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:07:08 *** Ammler has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:07:08 *** Hirundo has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:07:08 *** gelignite has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:07:08 *** LordAro has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:07:08 *** tneo has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:07:08 *** Xaroth has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:07:08 *** XeryusTC has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:07:08 *** blathijs has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:07:08 *** fonsinchen has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:07:08 *** Venemo has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:07:08 *** Hazzard has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:07:08 *** Yexo has quit IRC (reticulum.oftc.net liquid.oftc.net)
17:07:38 *** gelignite has joined #openttd
17:07:38 *** Deep3D has joined #openttd
17:07:38 *** NGC3982 has joined #openttd
17:07:38 *** Alkel_U3 has joined #openttd
17:07:38 *** wormnest[m] has joined #openttd
17:07:38 *** vista_narvas[m] has joined #openttd
17:07:38 *** soylent_cow[m] has joined #openttd
17:07:38 *** shedidthedog[m] has joined #openttd
17:07:38 *** patrick[m]12 has joined #openttd
17:07:38 *** patricia[m]1 has joined #openttd
17:07:38 *** linda[m]1 has joined #openttd
17:07:38 *** igor[m] has joined #openttd
17:07:38 *** giords[m] has joined #openttd
17:07:38 *** freu[m] has joined #openttd
17:07:38 *** elliot[m] has joined #openttd
17:07:38 *** CornsMcGowan[m] has joined #openttd
17:07:38 *** cjmonagle[m] has joined #openttd
17:07:38 *** Bilb[m] has joined #openttd
17:07:38 *** Artea has joined #openttd
17:07:38 *** Venemo has joined #openttd
17:07:38 *** Xaroth has joined #openttd
17:07:38 *** blathijs has joined #openttd
17:07:38 *** moll has joined #openttd
17:07:38 *** Hazzard has joined #openttd
17:07:38 *** Hirundo has joined #openttd
17:07:38 *** XeryusTC has joined #openttd
17:07:38 *** fonsinchen has joined #openttd
17:07:38 *** Ammler has joined #openttd
17:07:38 *** tneo has joined #openttd
17:07:38 *** Yexo has joined #openttd
17:07:38 *** LordAro has joined #openttd
17:07:38 *** murr4y has joined #openttd
17:07:38 *** liquid.oftc.net sets mode: +ov blathijs blathijs
17:09:43 *** Timberwolf has quit IRC (reticulum.oftc.net helix.oftc.net)
17:09:43 *** pickpacket has quit IRC (reticulum.oftc.net helix.oftc.net)
17:09:43 *** amal[m] has quit IRC (reticulum.oftc.net helix.oftc.net)
17:09:43 *** audunm[m] has quit IRC (reticulum.oftc.net helix.oftc.net)
17:09:43 *** citronbleuv[m] has quit IRC (reticulum.oftc.net helix.oftc.net)
17:09:43 *** fiddeldibu[m] has quit IRC (reticulum.oftc.net helix.oftc.net)
17:09:43 *** gretel[m] has quit IRC (reticulum.oftc.net helix.oftc.net)
17:09:43 *** hamstonkid[m] has quit IRC (reticulum.oftc.net helix.oftc.net)
17:09:43 *** jeremy[m]1 has quit IRC (reticulum.oftc.net helix.oftc.net)
17:09:43 *** joey[m]1 has quit IRC (reticulum.oftc.net helix.oftc.net)
17:09:43 *** kstar892[m] has quit IRC (reticulum.oftc.net helix.oftc.net)
17:09:43 *** luk3Z[m] has quit IRC (reticulum.oftc.net helix.oftc.net)
17:09:43 *** NekomimiGunner18[m] has quit IRC (reticulum.oftc.net helix.oftc.net)
17:09:43 *** rudolfs[m] has quit IRC (reticulum.oftc.net helix.oftc.net)
17:09:43 *** zzy2357[m] has quit IRC (reticulum.oftc.net helix.oftc.net)
17:09:43 *** argoneus has quit IRC (reticulum.oftc.net helix.oftc.net)
17:09:43 *** Azusa has quit IRC (reticulum.oftc.net helix.oftc.net)
17:09:43 *** jact[m] has quit IRC (reticulum.oftc.net helix.oftc.net)
17:09:43 *** urdh has quit IRC (reticulum.oftc.net helix.oftc.net)
17:09:43 *** Guest8201 has quit IRC (reticulum.oftc.net helix.oftc.net)
17:09:43 *** herms has quit IRC (reticulum.oftc.net helix.oftc.net)
17:09:43 *** karl[m]12 has quit IRC (reticulum.oftc.net helix.oftc.net)
17:09:43 *** menelaos[m] has quit IRC (reticulum.oftc.net helix.oftc.net)
17:09:43 *** michi_cc has quit IRC (reticulum.oftc.net helix.oftc.net)
17:09:43 *** Heiki has quit IRC (reticulum.oftc.net helix.oftc.net)
17:09:43 *** eirc has quit IRC (reticulum.oftc.net helix.oftc.net)
17:09:43 *** FLHerne has quit IRC (reticulum.oftc.net helix.oftc.net)
17:09:43 *** dihedral has quit IRC (reticulum.oftc.net helix.oftc.net)
17:09:43 *** pikaHeiki has quit IRC (reticulum.oftc.net helix.oftc.net)
17:10:15 *** michi_cc has joined #openttd
17:10:15 *** herms has joined #openttd
17:10:15 *** Azusa has joined #openttd
17:10:15 *** Heiki has joined #openttd
17:10:15 *** pikaHeiki has joined #openttd
17:10:15 *** FLHerne has joined #openttd
17:10:15 *** argoneus has joined #openttd
17:10:15 *** eirc has joined #openttd
17:10:15 *** zzy2357[m] has joined #openttd
17:10:15 *** Guest8201 has joined #openttd
17:10:15 *** rudolfs[m] has joined #openttd
17:10:15 *** NekomimiGunner18[m] has joined #openttd
17:10:15 *** menelaos[m] has joined #openttd
17:10:15 *** luk3Z[m] has joined #openttd
17:10:15 *** kstar892[m] has joined #openttd
17:10:15 *** karl[m]12 has joined #openttd
17:10:15 *** joey[m]1 has joined #openttd
17:10:15 *** jeremy[m]1 has joined #openttd
17:10:15 *** jact[m] has joined #openttd
17:10:15 *** hamstonkid[m] has joined #openttd
17:10:15 *** gretel[m] has joined #openttd
17:10:15 *** fiddeldibu[m] has joined #openttd
17:10:15 *** citronbleuv[m] has joined #openttd
17:10:15 *** audunm[m] has joined #openttd
17:10:15 *** amal[m] has joined #openttd
17:10:15 *** pickpacket has joined #openttd
17:10:15 *** dihedral has joined #openttd
17:10:15 *** Timberwolf has joined #openttd
17:10:15 *** urdh has joined #openttd
17:10:15 *** helix.oftc.net sets mode: +v michi_cc
17:10:17 <_jgr_> There's no shortage of map bits
17:11:06 <_jgr_> Objects, waypoints, etc can store stuff elsewhere anyway
17:11:18 *** SergioMassa[m] has quit IRC (Ping timeout: 483 seconds)
17:11:25 *** pikaHeiki has quit IRC (Ping timeout: 480 seconds)
17:12:02 *** freu[m] has quit IRC (Ping timeout: 484 seconds)
17:12:02 *** wormnest[m] has quit IRC (Ping timeout: 484 seconds)
17:12:02 *** patrick[m]12 has quit IRC (Ping timeout: 484 seconds)
17:13:29 <andythenorth> tile decor
17:14:24 <andythenorth> rail stations *can* be abused for rail decor, but they create complications
17:15:48 *** FelixActually[m] has quit IRC (Ping timeout: 484 seconds)
17:15:48 *** temeo[m] has quit IRC (Ping timeout: 484 seconds)
17:15:48 *** leward[m] has quit IRC (Ping timeout: 484 seconds)
17:15:48 *** Heiki[m] has quit IRC (Ping timeout: 484 seconds)
17:15:48 *** emilyd[m] has quit IRC (Ping timeout: 484 seconds)
17:15:48 *** einar[m] has quit IRC (Ping timeout: 484 seconds)
17:15:48 *** andythenorth[m] has quit IRC (Ping timeout: 484 seconds)
17:15:48 *** karoline[m] has quit IRC (Ping timeout: 484 seconds)
17:15:48 *** yubvin[m] has quit IRC (Ping timeout: 484 seconds)
17:16:11 <brickblock19280> would be nice if they could be built on signals
17:16:18 *** JamesRoss[m] has quit IRC (Ping timeout: 480 seconds)
17:16:18 *** thomas[m]1234567 has quit IRC (Ping timeout: 480 seconds)
17:16:18 *** nolep[m] has quit IRC (Ping timeout: 480 seconds)
17:16:19 *** fiddeldibu[m] has quit IRC (Ping timeout: 483 seconds)
17:16:19 *** kstar892[m] has quit IRC (Ping timeout: 483 seconds)
17:16:23 *** Gadg8eer[m] has quit IRC (Ping timeout: 480 seconds)
17:16:23 *** thelonelyellipsis[m] has quit IRC (Ping timeout: 480 seconds)
17:16:23 *** Farrokh[m] has quit IRC (Ping timeout: 480 seconds)
17:16:23 *** philip[m]123 has quit IRC (Ping timeout: 480 seconds)
17:16:23 *** magdalena[m] has quit IRC (Ping timeout: 480 seconds)
17:16:23 *** gdown has quit IRC (Ping timeout: 480 seconds)
17:16:23 *** EmeraldSnorlax[m] has quit IRC (Ping timeout: 480 seconds)
17:16:23 *** blikjeham[m] has quit IRC (Ping timeout: 480 seconds)
17:16:23 *** calbasi[m]1 has quit IRC (Ping timeout: 480 seconds)
17:16:24 *** vista_narvas[m] has quit IRC (Ping timeout: 480 seconds)
17:16:24 *** soylent_cow[m] has quit IRC (Ping timeout: 480 seconds)
17:16:24 *** shedidthedog[m] has quit IRC (Ping timeout: 480 seconds)
17:16:24 *** giords[m] has quit IRC (Ping timeout: 480 seconds)
17:16:24 *** CornsMcGowan[m] has quit IRC (Ping timeout: 480 seconds)
17:16:24 *** cjmonagle[m] has quit IRC (Ping timeout: 480 seconds)
17:16:24 *** Bilb[m] has quit IRC (Ping timeout: 480 seconds)
17:16:24 *** amal[m] has quit IRC (Ping timeout: 483 seconds)
17:16:24 *** patricia[m]1 has quit IRC (Ping timeout: 480 seconds)
17:16:24 *** linda[m]1 has quit IRC (Ping timeout: 480 seconds)
17:16:24 *** elliot[m] has quit IRC (Ping timeout: 480 seconds)
17:16:24 *** igor[m] has quit IRC (Ping timeout: 480 seconds)
17:16:24 *** karl[m]12 has quit IRC (Ping timeout: 483 seconds)
17:16:29 *** zzy2357[m] has quit IRC (Ping timeout: 483 seconds)
17:16:29 *** Guest8201 has quit IRC (Ping timeout: 483 seconds)
17:16:29 *** rudolfs[m] has quit IRC (Ping timeout: 483 seconds)
17:16:29 *** NekomimiGunner18[m] has quit IRC (Ping timeout: 483 seconds)
17:16:29 *** luk3Z[m] has quit IRC (Ping timeout: 483 seconds)
17:16:29 *** joey[m]1 has quit IRC (Ping timeout: 483 seconds)
17:16:29 *** jeremy[m]1 has quit IRC (Ping timeout: 483 seconds)
17:16:29 *** hamstonkid[m] has quit IRC (Ping timeout: 483 seconds)
17:16:29 *** gretel[m] has quit IRC (Ping timeout: 483 seconds)
17:16:29 *** citronbleuv[m] has quit IRC (Ping timeout: 483 seconds)
17:16:29 *** audunm[m] has quit IRC (Ping timeout: 483 seconds)
17:16:29 *** jact[m] has quit IRC (Ping timeout: 483 seconds)
17:16:29 *** menelaos[m] has quit IRC (Ping timeout: 483 seconds)
17:19:46 *** Westie has quit IRC (reticulum.oftc.net kinetic.oftc.net)
17:19:46 *** Heili has quit IRC (reticulum.oftc.net kinetic.oftc.net)
17:19:46 *** m1cr0man has quit IRC (reticulum.oftc.net kinetic.oftc.net)
17:19:46 *** Rubidium has quit IRC (reticulum.oftc.net kinetic.oftc.net)
17:19:46 *** jlx_ has quit IRC (reticulum.oftc.net kinetic.oftc.net)
17:19:46 *** Eddi|zuHause has quit IRC (reticulum.oftc.net kinetic.oftc.net)
17:19:46 *** jinks has quit IRC (reticulum.oftc.net kinetic.oftc.net)
17:19:46 *** HerzogDeXtEr has quit IRC (reticulum.oftc.net kinetic.oftc.net)
17:19:46 *** _aD has quit IRC (reticulum.oftc.net kinetic.oftc.net)
17:19:46 *** ckb has quit IRC (reticulum.oftc.net kinetic.oftc.net)
17:19:46 *** milek7 has quit IRC (reticulum.oftc.net kinetic.oftc.net)
17:19:46 *** welterde has quit IRC (reticulum.oftc.net kinetic.oftc.net)
17:19:46 *** ufo-piloot has quit IRC (reticulum.oftc.net kinetic.oftc.net)
17:19:46 *** Osai has quit IRC (reticulum.oftc.net kinetic.oftc.net)
17:19:46 *** avdg has quit IRC (reticulum.oftc.net kinetic.oftc.net)
17:19:46 *** SpComb has quit IRC (reticulum.oftc.net kinetic.oftc.net)
17:19:46 *** nielsm has quit IRC (reticulum.oftc.net kinetic.oftc.net)
17:19:46 *** Mek has quit IRC (reticulum.oftc.net kinetic.oftc.net)
17:19:46 *** SmatZ has quit IRC (reticulum.oftc.net kinetic.oftc.net)
17:19:46 *** Webster has quit IRC (reticulum.oftc.net kinetic.oftc.net)
17:19:46 *** Guest6892 has quit IRC (reticulum.oftc.net kinetic.oftc.net)
17:19:46 *** Hobbyboy has quit IRC (reticulum.oftc.net kinetic.oftc.net)
17:19:56 *** _aD has joined #openttd
17:19:56 *** HerzogDeXtEr has joined #openttd
17:19:56 *** nielsm has joined #openttd
17:19:56 *** jinks has joined #openttd
17:19:56 *** milek7 has joined #openttd
17:19:56 *** Eddi|zuHause has joined #openttd
17:19:56 *** ufo-piloot has joined #openttd
17:19:56 *** SpComb has joined #openttd
17:19:56 *** jlx_ has joined #openttd
17:19:56 *** Rubidium has joined #openttd
17:19:56 *** m1cr0man has joined #openttd
17:19:56 *** Westie has joined #openttd
17:19:56 *** Mek has joined #openttd
17:19:56 *** Hobbyboy has joined #openttd
17:19:56 *** Webster has joined #openttd
17:19:56 *** Heili has joined #openttd
17:19:56 *** Guest6892 has joined #openttd
17:19:56 *** SmatZ has joined #openttd
17:19:56 *** avdg has joined #openttd
17:19:56 *** Osai has joined #openttd
17:19:56 *** ckb has joined #openttd
17:19:56 *** welterde has joined #openttd
17:19:56 *** kinetic.oftc.net sets mode: +ov Rubidium Rubidium
17:28:06 <andythenorth> hmm seems like GS<->grf is nearly finished
17:29:34 <andythenorth> everything I wanted to do is now possible or has a PR
17:31:06 <andythenorth> oh except the grf doesn't have any way to know if the GS is going to be in the game
17:31:12 <andythenorth> or check the version of it etc
17:31:31 <andythenorth> I'm surprised we don't know anything about the configured GS at newgame time, but eh
17:44:24 <DorpsGek> [OpenTTD/OpenTTD] 2TallTyler updated pull request #11221: Codechange: Break up date_type.h into timer classes https://github.com/OpenTTD/OpenTTD/pull/11221
18:29:56 <DorpsGek> [OpenTTD/OpenTTD] michicc commented on pull request #11141: Add: [Script] Game script control of industry production level. https://github.com/OpenTTD/OpenTTD/pull/11141#issuecomment-1686824520
18:41:25 <DorpsGek> [OpenTTD/OpenTTD] andythenorth commented on pull request #11141: Add: [Script] Game script control of industry production level. https://github.com/OpenTTD/OpenTTD/pull/11141#issuecomment-1686844712
18:43:23 <DorpsGek> [OpenTTD/grfcodec] rubidium42 requested changes for pull request #23: data: Fix Action5 table https://github.com/OpenTTD/grfcodec/pull/23#pullrequestreview-1587656278
19:07:26 <DorpsGek> [OpenTTD/grfcodec] rubidium42 commented on issue #22: Wrong colours when decoding under macOS https://github.com/OpenTTD/grfcodec/issues/22
19:08:07 <cryoshakespeare> Using the base graphics only, if I wanted to force forests in arctic climates to use temperate graphics, ie. no snow, would I have to include the temperate forest sprite with the grf?
19:11:15 <DorpsGek> [OpenTTD/grfcodec] andythenorth commented on issue #22: Wrong colours when decoding under macOS https://github.com/OpenTTD/grfcodec/issues/22
19:11:47 <andythenorth> cryoshakespeare: you can reference the sprite number(s) in the base set
19:12:00 <cryoshakespeare> Ah cool, thanks :)
19:12:36 <andythenorth> there's a bunch of trees around 1712 or so in the sprite numbers
19:13:24 <andythenorth> FIRS forest: https://gist.github.com/andythenorth/c87415545d8d24e4984e06ca5643c97c
19:13:27 <andythenorth> search https://gist.github.com/andythenorth/c87415545d8d24e4984e06ca5643c97c
19:13:44 <andythenorth> search for `forest_slope_aware_ground_with_trees_uniform0`
19:14:13 <cryoshakespeare> Awesome, cheers(:
19:14:32 <_zephyris> That doesn't work for action5/A or replace/replace_new though, or does it?
19:14:57 <cryoshakespeare> I've been trying to make a little fork of 2TallTyler's Improved Town Industries, to allow it to use snowless forest sprites in arctic climates
19:15:04 <_zephyris> Only in town building/object/industry sprite layouts...
19:15:13 <_zephyris> Oh, yeah, that would work
19:15:37 <cryoshakespeare> I would actually just replace the sprites used with FIRS's, but I don't know how, it's a bit beyond my paygrade to understand how to translate the py files into nml
19:21:29 <DorpsGek> [OpenTTD/grfcodec] danielplaumann commented on issue #22: Wrong colours when decoding under macOS https://github.com/OpenTTD/grfcodec/issues/22
19:33:57 *** Flygon has joined #openttd
19:57:51 <DorpsGek> [OpenTTD/grfcodec] rubidium42 commented on issue #22: Wrong colours when decoding under macOS https://github.com/OpenTTD/grfcodec/issues/22
20:10:16 <DorpsGek> [OpenTTD/grfcodec] rubidium42 opened pull request #24: Change: make DOS TTD palette the default, instead of a compile time random one https://github.com/OpenTTD/grfcodec/pull/24
20:10:21 <DorpsGek> [OpenTTD/grfcodec] danielplaumann commented on issue #22: Wrong colours when decoding under macOS https://github.com/OpenTTD/grfcodec/issues/22
20:12:16 *** gelignite has quit IRC (Quit: Stay safe!)
20:16:13 <DorpsGek> [OpenTTD/grfcodec] rubidium42 commented on issue #22: Wrong colours when decoding under macOS https://github.com/OpenTTD/grfcodec/issues/22
20:21:20 <DorpsGek> [OpenTTD/grfcodec] danielplaumann commented on issue #22: Wrong colours when decoding under macOS https://github.com/OpenTTD/grfcodec/issues/22
20:55:35 *** FelixActually[m] has joined #openttd
20:55:41 *** leward[m] has joined #openttd
20:55:47 *** Heiki[m] has joined #openttd
20:55:52 *** temeo[m] has joined #openttd
20:55:57 *** einar[m] has joined #openttd
20:56:03 *** yubvin[m] has joined #openttd
20:56:08 *** emilyd[m] has joined #openttd
20:56:13 *** andythenorth[m] has joined #openttd
21:01:52 <DorpsGek> [OpenTTD/grfcodec] andythenorth commented on issue #22: Wrong colours when decoding under macOS https://github.com/OpenTTD/grfcodec/issues/22
21:28:19 *** keikoz has quit IRC (Ping timeout: 480 seconds)
21:44:24 *** HerzogDeXtEr has quit IRC (Read error: Connection reset by peer)
21:48:23 *** nielsm has quit IRC (Ping timeout: 480 seconds)
23:35:13 *** philip[m]123 has joined #openttd
23:36:08 *** Eddi|zuHause has quit IRC (Ping timeout: 480 seconds)
23:36:42 *** thelonelyellipsis[m] has joined #openttd
23:36:47 *** gdown has joined #openttd
23:36:52 *** blikjeham[m] has joined #openttd
23:36:57 *** Farrokh[m] has joined #openttd
23:37:02 *** magdalena[m] has joined #openttd
23:37:13 *** Gadg8eer[m] has joined #openttd
23:37:23 *** EmeraldSnorlax[m] has joined #openttd
23:37:33 *** NekomimiGunner18[m] has joined #openttd
23:37:45 *** jeremy[m]1 has joined #openttd
23:37:50 *** hamstonkid[m] has joined #openttd
23:38:00 *** audunm[m] has joined #openttd
23:39:03 *** zzy2357[m] has joined #openttd
23:39:08 *** gretel[m] has joined #openttd
23:40:18 *** rudolfs[m] has joined #openttd
23:40:24 *** luk3Z[m] has joined #openttd
23:40:40 *** joey[m]1 has joined #openttd
23:40:46 *** citronbleuv[m] has joined #openttd
23:41:59 *** soylent_cow[m] has joined #openttd
23:42:09 *** cjmonagle[m] has joined #openttd
23:42:14 *** CornsMcGowan[m] has joined #openttd
23:42:43 *** linda[m]1 has joined #openttd
23:42:53 *** wormnest[m] has joined #openttd
23:43:24 *** elliot[m] has joined #openttd
23:45:25 *** Eddi|zuHause has joined #openttd
23:47:14 *** shedidthedog[m] has joined #openttd
23:47:19 *** giords[m] has joined #openttd
23:47:31 *** Bilb[m] has joined #openttd
23:47:52 *** patricia[m]1 has joined #openttd
23:48:13 *** vista_narvas[m] has joined #openttd