IRC logs for #openttd on OFTC at 2026-01-30
            
00:09:46 <mmtunligit> ```if (read_pos + sizeof(T) > this->buffer.size()) {
00:09:46 <mmtunligit> this->read_pos++;
00:09:46 <mmtunligit> return {};
00:09:46 <mmtunligit> }```
00:09:46 <mmtunligit> like this?
00:10:20 <mmtunligit> also im confused by what you meant about the constructing a new vector or at least clearing first
00:11:26 <michi_cc[d]> this->read_pos += sizeof(T), read_pos is in bytes
00:14:08 <michi_cc[d]> mmtunligit: Look at the operator >> for e.g. std::string, EncodedString or bool. You'll see the all assign (=) the value they read to data. In your PR you are just emplacing onto the passed vector, even if it already has elements in it.
00:15:55 <michi_cc[d]> Oh, and if you want to be a hero, EndianBufferReader/EndianBufferWriter is something that could probably really benefit from unit tests, exactly to verify edge cases like this 😛
00:20:07 <mmtunligit> michi_cc[d]: is that what the push_back thing you suggested does? or are you suggesting that every time i want to add to the vector i clopy the data from the existing one, clear it and then fill it with that dat and the new value?
00:24:49 <mmtunligit> michi_cc[d]: im happy to be a hero but im gonna need to know what exactly a unit test entails, looking it up just seems to give me a lot of people going "use catch2" which isnt very helpful. pointing me in the direction of existing ones in the codebase would be the biggest result for the least effort. i see the folder src/tests but beyond that im not sure what id be looking for
00:25:53 <_glx_> we have some unit test already, so the hard part is done 🙂
00:28:48 <_glx_> basically you add a cpp file in src/tests and in its CMakeLists.txt
00:30:09 <mmtunligit> and then you give it a bunch of stuff to try passing to the methods youre testing, and a way to pass them?
00:30:34 *** toktik has quit IRC (Remote host closed the connection)
00:32:16 <_glx_> you can look at string_builder.cpp for a simple example
00:34:25 <mmtunligit> ok i think i get it
00:34:58 <_glx_> it's mainly use of the functions, then assertions
00:35:51 <mmtunligit> yeah ill take a look at doing that
00:36:49 <_glx_> hardest tests to write are corner case detection 🙂
00:37:56 <mmtunligit> i will write all the tests i can think of and then anything else that gets pointed out to me
00:42:10 *** toktik has joined #openttd
01:59:55 *** soylent_cow[m] has joined #openttd
02:37:24 *** Wormnest has quit IRC (Quit: Leaving)
02:44:54 *** MinchinWeb[m] has quit IRC (Read error: Connection reset by peer)
02:45:11 *** MinchinWeb[m] has joined #openttd
03:56:59 *** gnu_jj has joined #openttd
04:00:06 *** gnu_jj_ has quit IRC (Ping timeout: 480 seconds)
04:38:07 *** Zathras_1 has joined #openttd
04:41:44 *** Zathras_4 has quit IRC (Ping timeout: 480 seconds)
05:00:42 <DorpsGek> [OpenTTD/OpenTTD] eints-sync[bot] pushed 1 commits to master https://github.com/OpenTTD/OpenTTD/commit/1dd3d655747df41cda76bad54d06e86d6efa35ed
05:00:43 <DorpsGek> - Update: Translations from eints (by translators)
05:43:13 *** Binette[m] has joined #openttd
05:43:25 *** Heiki has joined #openttd
05:47:12 *** WormnestAndroid has quit IRC (Remote host closed the connection)
05:47:28 *** WormnestAndroid has joined #openttd
07:24:02 *** Flygon has quit IRC (Read error: Connection reset by peer)
07:39:33 *** MinchinWeb[m] has quit IRC (Remote host closed the connection)
07:39:47 *** MinchinWeb[m] has joined #openttd
08:51:11 *** marktheshark3209 has joined #openttd
08:51:11 <marktheshark3209> I realize this is not going to be helpful, but there is something related to vehicles crashing that causes desyncs in multiplayer... several people have noticed desyncs happen shortly after a train or plane crashing, though not always
08:51:19 <marktheshark3209> Have not been able to reproduce
08:53:27 <marktheshark3209> I have a feeling it might happen when it coincides with either autosave or quarterly profit update or something...
09:07:10 <tabytac> Yeah someone yesterday opened a bug report saying the same thing, that a vehicle crashing around an auto save caused a desync
09:28:11 <Rubidium> the main problem with desyncs is that you need to be able to reliably reproduce it to have a chance of finding and fixing the issue. It coinciding with autosave seems unlikely as autosave does not change the state.
09:31:26 <Rubidium> marktheshark3209: are you hosting the server? If so, please run the server with '-d desync=3'. That will store some extra stuff in the autosave folder; commands-out.log (a log of all the commands, joins, etc) and a lot of savefiles. Then just play/host until you hit a desync. Once that has happened, please open an issue with the commands-out.log, initial savegame and if the dmp_cmds* savegames aren't
09:31:32 <Rubidium> too big those as well. Otherwise we might be asking for specific savegames once we start analysing the log.
10:10:20 <peter1138> And hope it's not a 4kx4k map :o
10:12:23 <DorpsGek> [OpenTTD/OpenTTD] James103 commented on pull request #15199: Change: Scale subsidy distance by town/industry density and cargo amount https://github.com/OpenTTD/OpenTTD/pull/15199#pullrequestreview-3727423514
10:28:13 <marktheshark3209> Rubidium: I do not, but I can ask the host to enable it
10:38:49 <xarick> i started a server
10:38:56 <xarick> let's see if anyone joins
10:46:15 <xarick> heh my GS is spamming commands
10:47:53 <xarick> 12k lines in less than 5 minutes
10:48:22 <peter1138> What a surprise.
10:55:25 <LordAro> US still asleep, Europe at work, probably not a huge market at the moment
10:55:47 <LordAro> (or school)
11:07:20 <__abigail> LordAro: I'm also here
11:09:16 <LordAro> lies, Australia doesn't exist
11:26:56 <DorpsGek> [OpenTTD/OpenTTD] 2TallTyler closed issue #15192: [Bug]: Cloning changes "end of orders" to "End of shared orders" https://github.com/OpenTTD/OpenTTD/issues/15192
11:38:48 *** reldred has joined #openttd
11:38:48 <reldred> awful lot of people here from a place that doesnt existy
11:41:02 <__abigail> reldred: The Netherlands
11:41:21 <reldred> thats Discord channel #off-topic-1 and Discord channel #off-topic-2
11:42:22 <talltyler> I am awake, but wish I wasn’t
11:42:29 <peter1138> Discord doesn't exist :D
11:42:37 <reldred> it's nearly time for me to be awaken't
11:42:45 <reldred> i have errands to run tomorrow
11:43:00 <reldred> then go play 2nd ed 40k with a bunch of forty year olds
12:35:04 <xarick> master hellish is famous
12:35:21 <xarick> https://cdn.discordapp.com/attachments/1008473233844097104/1466773784399974522/image.png?ex=697df709&is=697ca589&hm=becf4a18f692fee31a1fe2061ab405aea5aaca652efaf18a11399e3cbb9d756e&
13:03:08 *** lactomeda has joined #openttd
13:03:08 <lactomeda> Hey everyone. I'm new to the server and OpenTTD. I was wondering if you guys were open to adding new music to the soundtrack. I'm a music producer and would love to contribute to the project.
13:03:33 <peter1138> Discord doesn't exi
13:03:35 <peter1138> Er.
13:05:19 <lactomeda> ?
13:09:51 <_zephyris> Yup, could help refine the current official music set (https://github.com/OpenTTD/OpenMSX, https://wiki.openttd.org/en/Basesets/OpenMSX) or make your complete own music set...
13:10:16 <_zephyris> All MIDI of course
13:14:41 <lactomeda> Okay, ty for the links with all the information
13:27:39 *** Wormnest has joined #openttd
13:30:33 <ahyangyi> If your music is in a different style from the existing default, you might want to consider making your music pack an add-on instead, though that goes to Discord channel #add-on-development.
13:32:35 <lactomeda> ahyangyi: Oh I was hoping to expand the default music if that's possible. I'd try my best to compose in the same style
13:33:32 <DorpsGek> [OpenTTD/OpenTTD] BabylonAS commented on issue #14035: [Bug]: OpenTTD does not consider FluidSynth config https://github.com/OpenTTD/OpenTTD/issues/14035
13:33:33 <lactomeda> should I post my questions in the OpenTTD forums? This is my first time contributing to a project like this
13:42:24 <emperorjake> lactomeda: You'll get faster help here, but it couldn't hurt to post to both. Though maybe Discord channel #add-on-development is the better place 🙂
13:43:55 <lactomeda> emperorjake: Ok, tysm 🙏
13:55:03 <talltyler> Another proposed subsidy and town rating improvement: Fulfilling a subsidy improves your town rating at both source and destination towns.
13:55:03 <talltyler> Only trouble is, my code doesn't seem to work. I had to remove some `const`s to get it working. Anybody see something obvious I've missed?
13:55:03 <talltyler> https://github.com/2TallTyler/OpenTTD/tree/subsidy-rating
13:55:38 <talltyler> It compiles and runs, but the town rating doesn't seem to change 🙂
13:59:06 <Rubidium> that subsidy code runs likely under OWNER_NONE or something similar, so it's going to change the rating of that non-existing company
14:00:12 <talltyler> Ah, `_current_company` isn't set?
14:01:58 <Rubidium> yup though bear in mind to restore it (look for current_company and backup I'd guess). And why don't you add this to AwardTo instead of duplicating it 4 times?
14:04:25 <Rubidium> and I would add a GetTown (I have doubts about the exact naming) to Source (where you just return nullptr when it's a HQ)
14:05:10 <talltyler> Thanks, there's definitely some code cleanup to be done 🙂
14:07:09 <_zephyris> Nice idea
14:08:30 <_glx_> auto restore backup 🙂
14:13:25 <peter1138> I've got a patch for that :)
14:21:15 <DorpsGek> [OpenTTD/OpenTTD] PeterN commented on issue #14035: [Bug]: OpenTTD does not consider FluidSynth config https://github.com/OpenTTD/OpenTTD/issues/14035
14:26:00 <peter1138> Hmm, annoying, the fix didn't get backported properly.
14:26:50 <peter1138> I think this might happen if the PR contains multiple commits, and one of them is the same title as the PR title.
14:27:54 <DorpsGek> [OpenTTD/OpenTTD] BabylonAS commented on issue #14035: [Bug]: OpenTTD does not consider FluidSynth config https://github.com/OpenTTD/OpenTTD/issues/14035
14:28:00 <_glx_> ah yes it's missing 2/3 of the fix
14:28:35 <LordAro> oh no
14:28:42 <LordAro> oh, rebase vs squash screw up?
14:28:48 <LordAro> i thought the script was supposed to handle that
14:29:05 <peter1138> It does if the names are different.
14:29:57 <LordAro> which names?
14:31:48 <peter1138> Commit vs PR, I think.
14:31:57 <peter1138> Well. I don't fancy experimenting on tbh.
14:32:02 <LordAro> that's a weird way of doing it
14:32:05 <peter1138> I noticed something weird before.
14:32:26 <DorpsGek> [OpenTTD/OpenTTD] LordAro commented on issue #14035: [Bug]: OpenTTD does not consider FluidSynth config https://github.com/OpenTTD/OpenTTD/issues/14035
14:32:29 <peter1138> # In case of multiple commits, check if it was squashed or rebased.
14:32:29 <peter1138> # We do this by comparing commit titles. As if you rebased, they have
14:32:29 <peter1138> # to be identical.
14:32:44 <_glx_> I know there's a special label for squashed PR (but it should not be needed anymore)
14:33:09 <LordAro> sounds like we need the reverse
14:33:22 <LordAro> though i'm not sure why it can't be detected via GH API or whatever
14:33:23 <peter1138> I don't know for sure if that's the problem, but it seems related for sure.
14:33:32 <peter1138> For sure for sure :o
14:34:00 <_glx_> bug in the script is highly possible
14:35:43 <_glx_> auto detect added in https://github.com/OpenTTD/scripts/pull/6
14:37:08 <_glx_> but issue might be in the original handling of multiple commits
14:46:20 <xarick> https://cdn.discordapp.com/attachments/1008473233844097104/1466806745707057182/image.png?ex=697e15bc&is=697cc43c&hm=fdc9d2da2a4ecda3de5d9a5e10511f272f25b3e4365fce51e5f11c4c64225ee8&
14:46:20 <xarick> caps lock!
14:46:50 <definitelynotcheese_> Ahh is that discord light mode
14:46:58 <definitelynotcheese_> My eyes
14:48:07 <_glx_> xarick: it's just handling of `#`
14:50:17 <peter1138> Heh
14:54:42 <xarick> somebody join my server, I wanna see someone desync
14:56:08 <_glx_> and of course you enabled desync logging
14:56:50 <xarick> yes, is that a bad idea
14:57:54 <xarick> 230 savegames created so far
15:00:08 <xarick> 145 MB commands-out.log
15:01:59 <xarick> seems the AIs are a bit op limited in multiplayer
15:02:17 <xarick> they're slowed down somehow
15:06:15 <peter1138> Should be the same, can only issue one command per tick.
16:09:06 *** gelignite has joined #openttd
16:39:03 <xarick> peter1138, do you have a patch for lifetime profit for vehicles
16:42:43 <xarick> I had this, but :(<https://github.com/OpenTTD/OpenTTD/pull/7919>
16:50:11 <andythenorth[d]> pickpacket is TTD expected to work with FIRS? 👀
16:50:15 *** Flygon has joined #openttd
16:50:40 <peter1138> ?
16:51:27 <andythenorth[d]> Tea Tea Deluxe
16:51:39 <andythenorth[d]> or are you ? Xarick?
16:51:45 <andythenorth[d]> or just generally at no-one?
16:51:56 <peter1138> Oh, of course, the funny naming :)
16:52:32 <pickpacket> andythenorth[d]: I haven't tried. I was under the impression that FIRS disables all other industry sets
16:52:46 <andythenorth[d]> it doesn't disable with TTD, but it will as of now
16:52:47 <pickpacket> Also I don't know how cargo id works
16:53:29 <pickpacket> andythenorth[d]: didnit have some exception for TTD? 🤔
16:54:56 <pickpacket> *did it
16:56:05 <pickpacket> Can I make ot work with FIRS somehow?
16:58:18 *** brickblock19280 has joined #openttd
16:58:18 <brickblock19280> Not really
16:58:36 <pickpacket> Too bad
17:18:03 <peter1138> Why do you have to disable things instead of just saying "don't ever mix industry sets"?
17:19:02 <DorpsGek> [OpenTTD/OpenTTD] zephyris commented on pull request #15200: Add: [NewGRF] Town number of nearby stations https://github.com/OpenTTD/OpenTTD/pull/15200#issuecomment-3824808089
17:22:17 <DorpsGek> [OpenTTD/OpenTTD] zephyris commented on pull request #15195: Add: [NewGRF] Town production and transport by cargo ID https://github.com/OpenTTD/OpenTTD/pull/15195#issuecomment-3824820091
17:23:53 <andythenorth[d]> peter1138: I might have not had enough lunch, but how would that work?
17:33:57 *** Wolf01 has joined #openttd
17:55:36 <peter1138> Let the player pick up the pieces when they do something silly.
18:10:47 <andythenorth[d]> what's the upside? 🙂
18:17:57 <peter1138> You don't have to keep updating FIRS to disable other random NewGRFs.
18:25:45 <andythenorth[d]> yes
18:26:23 <andythenorth[d]> hmm can I detect cargos that FIRS didn't define?
18:26:52 <andythenorth[d]> it's almost always the cargos
18:27:01 <andythenorth[d]> https://cdn.discordapp.com/attachments/1008473233844097104/1466862281009795295/Screenshot_20260130-215716.png?ex=697e4974&is=697cf7f4&hm=31983f09d55af2104ac552613c413dd3f4bd7ecff3cc02013b224234fa0be491&
18:55:38 <xarick> the few ppl that joined haven't desynced
18:55:59 <xarick> https://cdn.discordapp.com/attachments/1008473233844097104/1466869572316561642/image.png?ex=697e503f&is=697cfebf&hm=d959d25a5c1f85120330c863f05811d631133f2a3d4fca6dcabbff0465463b7d&
18:56:11 <peter1138> If you deliberately crashed vehicles?
18:56:21 <xarick> i didn't crash any :(
18:56:30 <xarick> except the ufo
18:56:45 <peter1138> Well considering the desync is allegedly due to vehicle crashes...
19:01:47 <xarick> Deleting a company requires holding left click
19:02:04 <xarick> not consistent with the click two times
19:08:44 <peter1138> Feel free to create an issue.
19:28:50 <andythenorth[d]> naptime?
19:29:39 <andythenorth[d]> hmm could industry grfs just have a flag for "if any other grf defines cargo, disable me"?
19:44:13 <xarick> gah, ChooChoo has an annoying error
19:44:49 <xarick> https://cdn.discordapp.com/attachments/1008473233844097104/1466881862973521961/image.png?ex=697e5bb1&is=697d0a31&hm=c0fb8b04cbfb505bc1b8f4ee50a69c020ed5417e7358c3c480f563c1ace7ffbd&
19:53:20 <xarick> https://www.tt-forums.net/download/file.php?id=232652
19:53:27 <xarick> yeah, im not the only one with the problem
19:54:34 *** MinchinWeb[m] has quit IRC (Ping timeout: 480 seconds)
19:55:56 <DorpsGek> [OpenTTD/OpenTTD] Rito13 opened pull request #15202: Codechange: [CI] Always use latest doxygen. https://github.com/OpenTTD/OpenTTD/pull/15202
19:56:30 <xarick> https://cdn.discordapp.com/attachments/1008473233844097104/1466884802895675433/image.png?ex=697e5e6e&is=697d0cee&hm=9a4b0cd3f99796b3bc8b1a40c22f14c48f1553fa8da422feae9755b8927c2144&
19:56:47 <xarick> location is a this.location
19:57:33 *** MinchinWeb[m] has joined #openttd
20:05:49 <DorpsGek> [OpenTTD/OpenTTD] zephyris closed pull request #14866: Change: Fetch OpenGFX2 for CI workflows https://github.com/OpenTTD/OpenTTD/pull/14866
20:05:52 <DorpsGek> [OpenTTD/OpenTTD] zephyris commented on pull request #14866: Change: Fetch OpenGFX2 for CI workflows https://github.com/OpenTTD/OpenTTD/pull/14866#issuecomment-3825507077
20:09:40 <pickpacket> What are your thoughts on how the new invite system has been received? For joining a company. I very much agree with a lot of the critique, especially because of how difficult asynchronous play becomes
20:15:23 <xarick> I'm not sure what to say
20:15:38 <xarick> I mostly test AIs
20:26:11 <xarick> difficult to debug choochoo. all the variables are hidden as class members :(
20:26:41 <xarick> barelly any locals
20:30:26 <peter1138> pickpacket, players can scream into their voids as much as they like, that isn't where construct feedback goes.
20:33:19 <pickpacket> peter1138: Apart from the tone of discussions, what do you think of the actual arguments?
20:40:15 <xarick> https://cdn.discordapp.com/attachments/1008473233844097104/1466895813992251599/image.png?ex=697e68af&is=697d172f&hm=d814807a3e732a48c4284f71a3636ef11a7b5bc0eb839547f5b718ed47bed0bc&
20:40:15 <xarick> hmm
20:41:08 <xarick> I don't like the way this AI is set up with try/catch stuff
20:41:11 <DorpsGek> [OpenTTD/OpenTTD] zephyris commented on pull request #15199: Change: Scale subsidy distance by town/industry density and cargo amount https://github.com/OpenTTD/OpenTTD/pull/15199#issuecomment-3825647401
20:41:26 <_zephyris> Maths'd
20:51:50 <peter1138> pickpacket, do you know what screaming into the void means?
20:57:06 <pickpacket> peter1138: yes, but I thought at least some of y'all read the forums 😂
20:57:22 <pickpacket> I should check if this one is still an issue: https://github.com/OpenTTD/OpenTTD/issues/14328
20:59:08 <LordAro> pickpacket: you're quite welcome to try to distill something into an issue (or discussion) if you like
21:03:01 <peter1138> https://github.com/OpenTTD/OpenTTD/discussions/14351
21:03:08 <peter1138> Doesn't seem very heated to me ;)
21:03:27 <DorpsGek> [OpenTTD/OpenTTD] zephyris commented on pull request #15199: Change: Scale subsidy distance by town/industry density and cargo amount https://github.com/OpenTTD/OpenTTD/pull/15199#issuecomment-3825717270
21:05:32 <xarick> oh, choochoo uses .slice stuff
21:05:41 <xarick> text = text.slice(0, space);
21:11:14 <DorpsGek> [OpenTTD/OpenTTD] zephyris requested changes for pull request #15189: Change: Allow subsidies with CargoDist https://github.com/OpenTTD/OpenTTD/pull/15189#pullrequestreview-3730409638
21:23:15 <DorpsGek> [OpenTTD/OpenTTD] zephyris opened issue #15203: [Bug]: Setting NewGRFs/AIs/etc. for scenarios is convoluted to the point of being nearly impossible https://github.com/OpenTTD/OpenTTD/issues/15203
21:34:34 <xarick> https://cdn.discordapp.com/attachments/1008473233844097104/1466909480489845009/image.png?ex=697e756a&is=697d23ea&hm=c80bb552e7726d41cc94ed13b242a6bb6c7e371a0ea09a24aae1c2099f6bcda8&
21:34:34 <xarick> this looks so confusing
21:35:34 <xarick> https://cdn.discordapp.com/attachments/1008473233844097104/1466909732303409222/image.png?ex=697e75a6&is=697d2426&hm=8a59481e4bcce8eeb89c3353dd5d2f5d9d22ed76330abc44c482128c86394ffb&
21:36:19 <_zephyris> @peter1138 Still interested in newgrf terrain tile ideas?
21:36:24 <xarick> https://cdn.discordapp.com/attachments/1008473233844097104/1466909940642742382/image.png?ex=697e75d7&is=697d2457&hm=4a9a6438b759c394f6ae6b80283dffa063097d0fc5d1e304c0331dd163f0e670&
21:36:36 <xarick> constructor constructor calling constructor...
21:36:49 <LordAro> the horror.
21:37:28 <DorpsGek> [OpenTTD/OpenTTD] Rito13 commented on pull request #11672: Allow GS to add animated text to the map https://github.com/OpenTTD/OpenTTD/pull/11672#pullrequestreview-3730472718
21:38:08 <xarick> var names with the same name as class members
21:38:16 <xarick> surely nothing goes wrong
21:41:18 <xarick> something went wrong though, one of the "location" remained null
21:44:55 <xarick> there is a GetTile in WorldObject and another GetTile in RelativeCoordinates
21:44:55 <xarick> function TileStrip in WorldObject calls one of these GetTile... tiles.append(GetTile([x, y]));
21:45:05 <DorpsGek> [OpenTTD/OpenTTD] mmtunligit updated pull request #15201: Codechange: Endian buffer reader/writer for std::vector https://github.com/OpenTTD/OpenTTD/pull/15201
21:47:42 <andythenorth[d]> nap?
21:50:59 <mmtunligit> i wish
21:51:59 <xarick> ExtendCrossing constructor is never called. Okay, I'm finally getting somewhere
21:53:54 <rito12_51026> andythenorth[d]: Hurray
21:54:56 <xarick> nevermind, I'm not
22:02:45 <DorpsGek> [OpenTTD/OpenTTD] PeterN commented on issue #15203: [Bug]: Setting NewGRFs/AIs/etc. for scenarios is convoluted to the point of being nearly impossible https://github.com/OpenTTD/OpenTTD/issues/15203
22:04:19 <DorpsGek> [OpenTTD/OpenTTD] PeterN commented on pull request #15201: Codechange: Endian buffer reader/writer for std::vector https://github.com/OpenTTD/OpenTTD/pull/15201#issuecomment-3825991971
22:12:25 <xarick> okay, I think i may have found an issue
22:13:17 <xarick> `if (!subtasks) {`
22:13:17 <xarick> subtasks = null or []
22:15:20 *** lobstarooo has quit IRC (Ping timeout: 480 seconds)
22:21:08 <xarick> https://cdn.discordapp.com/attachments/1008473233844097104/1466921200830775449/image.png?ex=697e8054&is=697d2ed4&hm=03c4ee720b2b323f24181803be73a8c7eb3f6e38488e5fb085e048501223569f&
22:21:08 <xarick> added a few logs. It has a tile, but then the task is interrupted because it needs money. upon returning to the same task, tile isn't recalculated and breaks everything
22:22:21 <xarick> it's kind of weird though. BuildCrossing has the tile
22:22:32 <xarick> but it's not passed around
22:22:38 <xarick> to the other functions
22:28:49 <mmtunligit> peter1138: will do, i just want to make sure ive adressed all of michi_cc[d]'s concerns before i do and it gets buried in a bigger PR that is much more of a hassle to review
22:31:09 <xarick> bug fixed! probably not the right way to fix it but it's not crashing
22:42:16 <DorpsGek> [OpenTTD/OpenTTD] rubidium42 approved pull request #15174: Codefix: script_window.hpp contains invalid links in docs. https://github.com/OpenTTD/OpenTTD/pull/15174#pullrequestreview-3730760663
22:43:13 <DorpsGek> [OpenTTD/OpenTTD] rubidium42 approved pull request #15182: Codechange: [CI] Sort doxygen warnings in docs checker. https://github.com/OpenTTD/OpenTTD/pull/15182#pullrequestreview-3730764627
22:46:54 *** Wolf01 has quit IRC (Quit: Once again the world is quick to bury me.)
22:54:01 <DorpsGek> [OpenTTD/OpenTTD] michicc commented on pull request #15201: Codechange: Endian buffer reader/writer for std::vector https://github.com/OpenTTD/OpenTTD/pull/15201#pullrequestreview-3730809323
22:54:56 <DorpsGek> [OpenTTD/OpenTTD] rubidium42 commented on pull request #15202: Codechange: [CI] Always use latest doxygen. https://github.com/OpenTTD/OpenTTD/pull/15202#pullrequestreview-3730803071
22:58:44 <DorpsGek> [OpenTTD/OpenTTD] rubidium42 commented on pull request #15201: Codechange: Endian buffer reader/writer for std::vector https://github.com/OpenTTD/OpenTTD/pull/15201#pullrequestreview-3730828537
22:59:46 <DorpsGek> [OpenTTD/OpenTTD] michicc commented on pull request #15201: Codechange: Endian buffer reader/writer for std::vector https://github.com/OpenTTD/OpenTTD/pull/15201#pullrequestreview-3730832887
23:01:36 <DorpsGek> [OpenTTD/OpenTTD] LordAro commented on pull request #15202: Codechange: [CI] Always use latest doxygen. https://github.com/OpenTTD/OpenTTD/pull/15202#pullrequestreview-3730831127
23:07:28 <DorpsGek> [OpenTTD/OpenTTD] mmtunligit updated pull request #15201: Codechange: Endian buffer reader/writer for std::vector https://github.com/OpenTTD/OpenTTD/pull/15201
23:08:13 <DorpsGek> [OpenTTD/OpenTTD] PeterN opened pull request #15204: Add: Company allow-list can be set to allow anyone. https://github.com/OpenTTD/OpenTTD/pull/15204
23:08:52 <DorpsGek> [OpenTTD/OpenTTD] mmtunligit commented on pull request #15201: Codechange: Endian buffer reader/writer for std::vector https://github.com/OpenTTD/OpenTTD/pull/15201#issuecomment-3826315149
23:09:18 <xarick> https://cdn.discordapp.com/attachments/1008473233844097104/1466933322260287630/image.png?ex=697e8b9e&is=697d3a1e&hm=c813b1ed67c08e58ae4bd72442ee5b22e7d21ccc3f0974beb22669a9a2c14e44&
23:09:18 <xarick> nice town
23:11:21 <DorpsGek> [OpenTTD/OpenTTD] zephyris commented on issue #15203: [Bug]: Setting NewGRFs/AIs/etc. for scenarios is convoluted to the point of being nearly impossible https://github.com/OpenTTD/OpenTTD/issues/15203
23:18:30 *** lobster has joined #openttd
23:18:51 <peter1138> Well
23:19:50 *** Flygon has quit IRC (Remote host closed the connection)