…to connect (econ, server). otherwise silently ignore the attempt
10:29
[quakenet] <Teeworlds> teeworlds/master f469fb4 oy: added a 5 second cooldown for responding to a banned user that wants to connect (econ, server). otherwise silently ignore the attempt
[quakenet] <Oy> my concern is that we introcude some bug with our implementation, which might occur very rare and/or does not seem as it's linked to the sorting
11:40
[quakenet] <heinrich5991> yep, mine too... that's why I'd prefer to use the sort from the standard library
11:42
[quakenet] <Dune> is sorting critical anywhere anyway?
11:43
[quakenet] <Dune> I'm concerned the standard library is awful in terms of performance
11:45
[quakenet] <Oy> heinrich left a comment where we use sorting in tw
11:48
[quakenet] <Oy> dunno if the standard library one provides the same result on every platform, but it seems it's not needed
[quakenet] <heinrich5991> std::stable_sort must produce the same result on all platforms by specification, std::sort might result in different orderings of elements with the same key
12:24
[quakenet] <heinrich5991> generally, I'd assume that standard library functions are reasonably optimized