-
-
Notifications
You must be signed in to change notification settings - Fork 683
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[MDB IGNORE] [RECOUP] [PORT] Removes Auxmos in favour of LINDA #11813
base: master
Are you sure you want to change the base?
Commits on Aug 31, 2024
-
Moves adjacent air into the main atmos subsystem (#64559)
We should just straight up not be processing turfs if the adjacent turf isn't correctly setup It used to be on a seperate subsystem with a second wait with the idea of reducing the cost of explosions, but since they're instant now there's no reason to not just have it on SSair. Gets rid of my excuse for process_cell runtimes too
Configuration menu - View commit details
-
Copy full SHA for 297742f - Browse repository at this point
Copy the full SHA 297742fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 62b38ad - Browse repository at this point
Copy the full SHA 62b38adView commit details -
Configuration menu - View commit details
-
Copy full SHA for 38d7a46 - Browse repository at this point
Copy the full SHA 38d7a46View commit details -
Configuration menu - View commit details
-
Copy full SHA for 46db896 - Browse repository at this point
Copy the full SHA 46db896View commit details -
Fixes ignoring space turfs in difference checks (#73962)
<!-- Write **BELOW** The Headers and **ABOVE** The comments else it may not be viewable. --> <!-- You can view Contributing.MD for a detailed description of the pull request process. --> ## About The Pull Request I done fucked it lads. Space turfs are never initialized, so asserting all shareable turfs have a cycle below 0 is not safe. instead we'll use -infinity. if that ever breaks I'll eat my shoe Closes #73961
Configuration menu - View commit details
-
Copy full SHA for cf29d59 - Browse repository at this point
Copy the full SHA cf29d59View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3754526 - Browse repository at this point
Copy the full SHA 3754526View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2ce2fc1 - Browse repository at this point
Copy the full SHA 2ce2fc1View commit details -
Configuration menu - View commit details
-
Copy full SHA for a10ffb4 - Browse repository at this point
Copy the full SHA a10ffb4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1754d73 - Browse repository at this point
Copy the full SHA 1754d73View commit details -
Configuration menu - View commit details
-
Copy full SHA for bf2c064 - Browse repository at this point
Copy the full SHA bf2c064View commit details -
Configuration menu - View commit details
-
Copy full SHA for 997880a - Browse repository at this point
Copy the full SHA 997880aView commit details -
Configuration menu - View commit details
-
Copy full SHA for eacd012 - Browse repository at this point
Copy the full SHA eacd012View commit details
Commits on Sep 2, 2024
-
Configuration menu - View commit details
-
Copy full SHA for d21e4ab - Browse repository at this point
Copy the full SHA d21e4abView commit details -
Configuration menu - View commit details
-
Copy full SHA for dabd6e3 - Browse repository at this point
Copy the full SHA dabd6e3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 00ecc2b - Browse repository at this point
Copy the full SHA 00ecc2bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4e8037e - Browse repository at this point
Copy the full SHA 4e8037eView commit details -
Configuration menu - View commit details
-
Copy full SHA for b5abcb0 - Browse repository at this point
Copy the full SHA b5abcb0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8c77d0a - Browse repository at this point
Copy the full SHA 8c77d0aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5faa2ae - Browse repository at this point
Copy the full SHA 5faa2aeView commit details -
Configuration menu - View commit details
-
Copy full SHA for ee2a41a - Browse repository at this point
Copy the full SHA ee2a41aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 289ac18 - Browse repository at this point
Copy the full SHA 289ac18View commit details -
Configuration menu - View commit details
-
Copy full SHA for d67a07b - Browse repository at this point
Copy the full SHA d67a07bView commit details -
Configuration menu - View commit details
-
Copy full SHA for bcdc28d - Browse repository at this point
Copy the full SHA bcdc28dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8061855 - Browse repository at this point
Copy the full SHA 8061855View commit details -
Optimizes some gas_mixture procs, Optimizes pipeline processing signi…
…ficantly by 33% (#74233) It is faster to operate on a gas list, especially if cached, then it is to operate on a datum. Doing this cause I'm seeing cost in merge() post #74230 Hits on a few other important places too. self_breakdown and such. Worth it IMO Could in theory go further by caching the global list. I'm tempted I admit but it needs profiling first and it's late EDIT: I have not slept, and have gone tooo far [Micros /gas_mixture/copy and copy_from, adds a new proc to handle copying with a ratio, copy_from_ratio](tgstation/tgstation@91da000) [91da000](tgstation/tgstation@91da000) The ADD_GAS sidestep saves us 0.1 seconds of init (used to at least. Ensuring we don't break archive is gonna have a cost. I don't want to profile this so I'll estimate maybe 0.05 seconds). The faster version of copy_from is just well, better, and helps to avoid stupid [Optimizes pipeline processing](tgstation/tgstation@bf5a2d2) [bf5a2d2](tgstation/tgstation@bf5a2d2) I haven't slept in 36 hours. Have some atmos optimizations Pipelines now keep track of components that require custom reconciliation as a seperate list. This avoids the overhead of filtering all connected atmos machinery. Rather then relying on |= to avoid duplicate gas_mixtures, we instead use a cycle var stored on the mix itself, which is compared with a static unique id from reconcile_air() This fully prevents double processing of gas, and should (hopefully) prevent stupid dupe issues in future Rather then summing volume on the gas mixture itself, we sum it in a local var. This avoids datum var accesses, and saves a slight bit of time Instead of running THERMAL_ENERGY() (and thus heat_capacity(), which iterates all gases in the mix AGAIN) when processing gas, we instead just hook into the existing heat capacity calculation done inside the giver gases loop This saves a significant amount of time, somewhere around 30% of the proc, I think? This doesn't tackle the big headache here, which is the copy_from loop at the base of the proc. I think the solution is to convert pipelines to a sort of polling model. Atmos components don't "own" their mix, they instead have to request a copy of it from the pipeline datum. This would work based off a mutually agreed upon volume amount for that component in that process cycle. We'd use an archived system to figure out what gases to give to components, while removing from the real MOLES list. We could then push gas consumption requests to the pipeline, which would handle them, alongside volume changes, on the next process. Not sure how I'd handle connected pipelines... Merging post reconcile maybe? This is a problem for tomorrow though, I need to go to bed. Saves about 30% of pipeline costs. Profiles taken on kilo, until each reconcile_air hits 5000 calls [old.txt](https://github.com/tgstation/tgstation/files/11075118/Profile.results.total.time.txt) [new.txt](https://github.com/tgstation/tgstation/files/11075133/profiler.txt)
Configuration menu - View commit details
-
Copy full SHA for 907c1f4 - Browse repository at this point
Copy the full SHA 907c1f4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7955990 - Browse repository at this point
Copy the full SHA 7955990View commit details
Commits on Sep 3, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 2187181 - Browse repository at this point
Copy the full SHA 2187181View commit details
Commits on Sep 8, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 20a2ad3 - Browse repository at this point
Copy the full SHA 20a2ad3View commit details -
Configuration menu - View commit details
-
Copy full SHA for ada712f - Browse repository at this point
Copy the full SHA ada712fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2a9dbc3 - Browse repository at this point
Copy the full SHA 2a9dbc3View commit details -
Configuration menu - View commit details
-
Copy full SHA for fafaba6 - Browse repository at this point
Copy the full SHA fafaba6View commit details -
Merge branch 'LINDA-FINALLY!!!!!!!!' of https://github.com/JixS4v/Bee…
…Station-Hornet into LINDA-FINALLY!!!!!!!!
Configuration menu - View commit details
-
Copy full SHA for f7cceef - Browse repository at this point
Copy the full SHA f7cceefView commit details -
Configuration menu - View commit details
-
Copy full SHA for ed06a40 - Browse repository at this point
Copy the full SHA ed06a40View commit details -
Configuration menu - View commit details
-
Copy full SHA for 54f3a00 - Browse repository at this point
Copy the full SHA 54f3a00View commit details -
Configuration menu - View commit details
-
Copy full SHA for 781fe42 - Browse repository at this point
Copy the full SHA 781fe42View commit details -
Configuration menu - View commit details
-
Copy full SHA for 295015d - Browse repository at this point
Copy the full SHA 295015dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 12aea53 - Browse repository at this point
Copy the full SHA 12aea53View commit details -
Configuration menu - View commit details
-
Copy full SHA for 676c4ed - Browse repository at this point
Copy the full SHA 676c4edView commit details -
Configuration menu - View commit details
-
Copy full SHA for a4b3eb7 - Browse repository at this point
Copy the full SHA a4b3eb7View commit details -
Configuration menu - View commit details
-
Copy full SHA for ea78aa2 - Browse repository at this point
Copy the full SHA ea78aa2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8b822a6 - Browse repository at this point
Copy the full SHA 8b822a6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2fee225 - Browse repository at this point
Copy the full SHA 2fee225View commit details -
Configuration menu - View commit details
-
Copy full SHA for 542839d - Browse repository at this point
Copy the full SHA 542839dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3389b22 - Browse repository at this point
Copy the full SHA 3389b22View commit details -
Configuration menu - View commit details
-
Copy full SHA for aa6ac49 - Browse repository at this point
Copy the full SHA aa6ac49View commit details
Commits on Sep 13, 2024
-
Configuration menu - View commit details
-
Copy full SHA for be71b45 - Browse repository at this point
Copy the full SHA be71b45View commit details
Commits on Sep 20, 2024
-
Configuration menu - View commit details
-
Copy full SHA for e7b1e5b - Browse repository at this point
Copy the full SHA e7b1e5bView commit details -
Configuration menu - View commit details
-
Copy full SHA for e59dc92 - Browse repository at this point
Copy the full SHA e59dc92View commit details -
Configuration menu - View commit details
-
Copy full SHA for e4fb506 - Browse repository at this point
Copy the full SHA e4fb506View commit details
Commits on Oct 31, 2024
-
Configuration menu - View commit details
-
Copy full SHA for eb7598c - Browse repository at this point
Copy the full SHA eb7598cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 62ca29a - Browse repository at this point
Copy the full SHA 62ca29aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 869d6f1 - Browse repository at this point
Copy the full SHA 869d6f1View commit details
Commits on Nov 1, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 1a60da1 - Browse repository at this point
Copy the full SHA 1a60da1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 074b7e8 - Browse repository at this point
Copy the full SHA 074b7e8View commit details -
Configuration menu - View commit details
-
Copy full SHA for ba4504b - Browse repository at this point
Copy the full SHA ba4504bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 58d5c41 - Browse repository at this point
Copy the full SHA 58d5c41View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7fe02fd - Browse repository at this point
Copy the full SHA 7fe02fdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 500d78d - Browse repository at this point
Copy the full SHA 500d78dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1eb4585 - Browse repository at this point
Copy the full SHA 1eb4585View commit details -
Configuration menu - View commit details
-
Copy full SHA for f3dc661 - Browse repository at this point
Copy the full SHA f3dc661View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3aa0002 - Browse repository at this point
Copy the full SHA 3aa0002View commit details -
Configuration menu - View commit details
-
Copy full SHA for c814096 - Browse repository at this point
Copy the full SHA c814096View commit details -
Merge branch 'Linda-Recoup' of https://github.com/XeonMations/BeeStat…
…ion-Hornet into Linda-Recoup
Configuration menu - View commit details
-
Copy full SHA for c51eb7a - Browse repository at this point
Copy the full SHA c51eb7aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 52c1939 - Browse repository at this point
Copy the full SHA 52c1939View commit details -
Merge pull request #10 from HowToLoLu/Linda-Recoup
Fixed your tanks!
Configuration menu - View commit details
-
Copy full SHA for eaa0d93 - Browse repository at this point
Copy the full SHA eaa0d93View commit details -
Configuration menu - View commit details
-
Copy full SHA for 627c67e - Browse repository at this point
Copy the full SHA 627c67eView commit details -
Merge pull request #11 from HowToLoLu/Linda-Recoup
I admit I rushed it; didn't test it then went back and saw a flaw at 2 AM
Configuration menu - View commit details
-
Copy full SHA for cf5d54e - Browse repository at this point
Copy the full SHA cf5d54eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2e545d6 - Browse repository at this point
Copy the full SHA 2e545d6View commit details -
Merge branch 'Linda-Recoup' of https://github.com/XeonMations/BeeStat…
…ion-Hornet into Linda-Recoup
Configuration menu - View commit details
-
Copy full SHA for 06da1ba - Browse repository at this point
Copy the full SHA 06da1baView commit details -
Configuration menu - View commit details
-
Copy full SHA for 32b8d58 - Browse repository at this point
Copy the full SHA 32b8d58View commit details -
Configuration menu - View commit details
-
Copy full SHA for da1e9d8 - Browse repository at this point
Copy the full SHA da1e9d8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 40d2e0d - Browse repository at this point
Copy the full SHA 40d2e0dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7c2c3c1 - Browse repository at this point
Copy the full SHA 7c2c3c1View commit details -
Configuration menu - View commit details
-
Copy full SHA for f91b700 - Browse repository at this point
Copy the full SHA f91b700View commit details -
Configuration menu - View commit details
-
Copy full SHA for c1170d9 - Browse repository at this point
Copy the full SHA c1170d9View commit details -
Configuration menu - View commit details
-
Copy full SHA for a31566d - Browse repository at this point
Copy the full SHA a31566dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5cd1e47 - Browse repository at this point
Copy the full SHA 5cd1e47View commit details -
Configuration menu - View commit details
-
Copy full SHA for b411d98 - Browse repository at this point
Copy the full SHA b411d98View commit details
Commits on Nov 2, 2024
-
Configuration menu - View commit details
-
Copy full SHA for a354b90 - Browse repository at this point
Copy the full SHA a354b90View commit details
Commits on Nov 3, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 8a502d0 - Browse repository at this point
Copy the full SHA 8a502d0View commit details -
Configuration menu - View commit details
-
Copy full SHA for d33e8c3 - Browse repository at this point
Copy the full SHA d33e8c3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 64b865d - Browse repository at this point
Copy the full SHA 64b865dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 83b0cc1 - Browse repository at this point
Copy the full SHA 83b0cc1View commit details -
Configuration menu - View commit details
-
Copy full SHA for d2fc998 - Browse repository at this point
Copy the full SHA d2fc998View commit details -
Configuration menu - View commit details
-
Copy full SHA for a519b84 - Browse repository at this point
Copy the full SHA a519b84View commit details -
Configuration menu - View commit details
-
Copy full SHA for b0d700a - Browse repository at this point
Copy the full SHA b0d700aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1ac5961 - Browse repository at this point
Copy the full SHA 1ac5961View commit details -
Configuration menu - View commit details
-
Copy full SHA for 03e8bec - Browse repository at this point
Copy the full SHA 03e8becView commit details -
Configuration menu - View commit details
-
Copy full SHA for 314cfed - Browse repository at this point
Copy the full SHA 314cfedView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0a08baf - Browse repository at this point
Copy the full SHA 0a08bafView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2abf01a - Browse repository at this point
Copy the full SHA 2abf01aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 79a2459 - Browse repository at this point
Copy the full SHA 79a2459View commit details -
Configuration menu - View commit details
-
Copy full SHA for 63c4013 - Browse repository at this point
Copy the full SHA 63c4013View commit details -
Configuration menu - View commit details
-
Copy full SHA for 17a61ce - Browse repository at this point
Copy the full SHA 17a61ceView commit details -
Configuration menu - View commit details
-
Copy full SHA for cb61f6d - Browse repository at this point
Copy the full SHA cb61f6dView commit details
Commits on Nov 4, 2024
-
Configuration menu - View commit details
-
Copy full SHA for b2847f0 - Browse repository at this point
Copy the full SHA b2847f0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0be7a15 - Browse repository at this point
Copy the full SHA 0be7a15View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1c9444d - Browse repository at this point
Copy the full SHA 1c9444dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 94f2541 - Browse repository at this point
Copy the full SHA 94f2541View commit details -
Configuration menu - View commit details
-
Copy full SHA for f3e747d - Browse repository at this point
Copy the full SHA f3e747dView commit details -
Configuration menu - View commit details
-
Copy full SHA for aa077e6 - Browse repository at this point
Copy the full SHA aa077e6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2540b3b - Browse repository at this point
Copy the full SHA 2540b3bView commit details
Commits on Nov 5, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 0865ece - Browse repository at this point
Copy the full SHA 0865eceView commit details -
Merge pull request #12 from HowToLoLu/Linda-Recoup
[Linda-Recoup] Maps? Maps! MAAAAAAAAAAAPS!!
Configuration menu - View commit details
-
Copy full SHA for 7f67076 - Browse repository at this point
Copy the full SHA 7f67076View commit details
Commits on Nov 6, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 2ad24ae - Browse repository at this point
Copy the full SHA 2ad24aeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 78f7875 - Browse repository at this point
Copy the full SHA 78f7875View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8123cd6 - Browse repository at this point
Copy the full SHA 8123cd6View commit details -
Configuration menu - View commit details
-
Copy full SHA for a87900b - Browse repository at this point
Copy the full SHA a87900bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 94f8888 - Browse repository at this point
Copy the full SHA 94f8888View commit details -
Configuration menu - View commit details
-
Copy full SHA for c5d2e86 - Browse repository at this point
Copy the full SHA c5d2e86View commit details -
Configuration menu - View commit details
-
Copy full SHA for b756a67 - Browse repository at this point
Copy the full SHA b756a67View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5481d4d - Browse repository at this point
Copy the full SHA 5481d4dView commit details
Commits on Nov 7, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 1d1514b - Browse repository at this point
Copy the full SHA 1d1514bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 211392e - Browse repository at this point
Copy the full SHA 211392eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6a20df7 - Browse repository at this point
Copy the full SHA 6a20df7View commit details
Commits on Nov 8, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 43470dd - Browse repository at this point
Copy the full SHA 43470ddView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7f0e852 - Browse repository at this point
Copy the full SHA 7f0e852View commit details -
Configuration menu - View commit details
-
Copy full SHA for 68de128 - Browse repository at this point
Copy the full SHA 68de128View commit details -
Configuration menu - View commit details
-
Copy full SHA for 37b7ebe - Browse repository at this point
Copy the full SHA 37b7ebeView commit details
Commits on Nov 10, 2024
-
Configuration menu - View commit details
-
Copy full SHA for abd6c70 - Browse repository at this point
Copy the full SHA abd6c70View commit details -
Configuration menu - View commit details
-
Copy full SHA for 26d1f1c - Browse repository at this point
Copy the full SHA 26d1f1cView commit details -
Configuration menu - View commit details
-
Copy full SHA for d5784c8 - Browse repository at this point
Copy the full SHA d5784c8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2910544 - Browse repository at this point
Copy the full SHA 2910544View commit details -
Configuration menu - View commit details
-
Copy full SHA for 56229bd - Browse repository at this point
Copy the full SHA 56229bdView commit details
Commits on Nov 11, 2024
-
Configuration menu - View commit details
-
Copy full SHA for c369cf1 - Browse repository at this point
Copy the full SHA c369cf1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2b78f58 - Browse repository at this point
Copy the full SHA 2b78f58View commit details -
Configuration menu - View commit details
-
Copy full SHA for 72537fb - Browse repository at this point
Copy the full SHA 72537fbView commit details -
Configuration menu - View commit details
-
Copy full SHA for ce16cca - Browse repository at this point
Copy the full SHA ce16ccaView commit details -
44 errors on the wall, 44 errors to patch, take one down, patch it ar…
…ound, 5122 bugs on the wall
Configuration menu - View commit details
-
Copy full SHA for fdffca0 - Browse repository at this point
Copy the full SHA fdffca0View commit details -
Configuration menu - View commit details
-
Copy full SHA for e5a2622 - Browse repository at this point
Copy the full SHA e5a2622View commit details -
Configuration menu - View commit details
-
Copy full SHA for b406d86 - Browse repository at this point
Copy the full SHA b406d86View commit details -
Configuration menu - View commit details
-
Copy full SHA for 48529f3 - Browse repository at this point
Copy the full SHA 48529f3View commit details -
Configuration menu - View commit details
-
Copy full SHA for b2d132b - Browse repository at this point
Copy the full SHA b2d132bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 05d96e5 - Browse repository at this point
Copy the full SHA 05d96e5View commit details -
Configuration menu - View commit details
-
Copy full SHA for d01d51d - Browse repository at this point
Copy the full SHA d01d51dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 826498c - Browse repository at this point
Copy the full SHA 826498cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 16cddd4 - Browse repository at this point
Copy the full SHA 16cddd4View commit details -
Configuration menu - View commit details
-
Copy full SHA for c2f78d8 - Browse repository at this point
Copy the full SHA c2f78d8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8e0987b - Browse repository at this point
Copy the full SHA 8e0987bView commit details -
Configuration menu - View commit details
-
Copy full SHA for b3c5632 - Browse repository at this point
Copy the full SHA b3c5632View commit details -
Configuration menu - View commit details
-
Copy full SHA for c7251be - Browse repository at this point
Copy the full SHA c7251beView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6dba3ab - Browse repository at this point
Copy the full SHA 6dba3abView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2f02cd3 - Browse repository at this point
Copy the full SHA 2f02cd3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 74f87b9 - Browse repository at this point
Copy the full SHA 74f87b9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8341356 - Browse repository at this point
Copy the full SHA 8341356View commit details -
Configuration menu - View commit details
-
Copy full SHA for c948202 - Browse repository at this point
Copy the full SHA c948202View commit details
Commits on Nov 12, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 536ed73 - Browse repository at this point
Copy the full SHA 536ed73View commit details -
Configuration menu - View commit details
-
Copy full SHA for 155ed91 - Browse repository at this point
Copy the full SHA 155ed91View commit details -
Configuration menu - View commit details
-
Copy full SHA for b558313 - Browse repository at this point
Copy the full SHA b558313View commit details -
Configuration menu - View commit details
-
Copy full SHA for 47715a8 - Browse repository at this point
Copy the full SHA 47715a8View commit details
Commits on Nov 13, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 522fecd - Browse repository at this point
Copy the full SHA 522fecdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 085dfb1 - Browse repository at this point
Copy the full SHA 085dfb1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 33b98bf - Browse repository at this point
Copy the full SHA 33b98bfView commit details -
Configuration menu - View commit details
-
Copy full SHA for adbd2c1 - Browse repository at this point
Copy the full SHA adbd2c1View commit details -
Configuration menu - View commit details
-
Copy full SHA for b0f6208 - Browse repository at this point
Copy the full SHA b0f6208View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9c04db5 - Browse repository at this point
Copy the full SHA 9c04db5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 888af59 - Browse repository at this point
Copy the full SHA 888af59View commit details -
Configuration menu - View commit details
-
Copy full SHA for d689540 - Browse repository at this point
Copy the full SHA d689540View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4d501a3 - Browse repository at this point
Copy the full SHA 4d501a3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2d925ca - Browse repository at this point
Copy the full SHA 2d925caView commit details -
Configuration menu - View commit details
-
Copy full SHA for b28d027 - Browse repository at this point
Copy the full SHA b28d027View commit details -
Configuration menu - View commit details
-
Copy full SHA for e18eff9 - Browse repository at this point
Copy the full SHA e18eff9View commit details -
Configuration menu - View commit details
-
Copy full SHA for e5c11fa - Browse repository at this point
Copy the full SHA e5c11faView commit details -
Configuration menu - View commit details
-
Copy full SHA for ab62791 - Browse repository at this point
Copy the full SHA ab62791View commit details -
Configuration menu - View commit details
-
Copy full SHA for fa207ee - Browse repository at this point
Copy the full SHA fa207eeView commit details -
Configuration menu - View commit details
-
Copy full SHA for e55b57f - Browse repository at this point
Copy the full SHA e55b57fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5a212be - Browse repository at this point
Copy the full SHA 5a212beView commit details -
Configuration menu - View commit details
-
Copy full SHA for fbd0f40 - Browse repository at this point
Copy the full SHA fbd0f40View commit details -
Configuration menu - View commit details
-
Copy full SHA for 179c8a7 - Browse repository at this point
Copy the full SHA 179c8a7View commit details -
Configuration menu - View commit details
-
Copy full SHA for c638aff - Browse repository at this point
Copy the full SHA c638affView commit details
Commits on Nov 14, 2024
-
Configuration menu - View commit details
-
Copy full SHA for abb6bcb - Browse repository at this point
Copy the full SHA abb6bcbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8bb6f8d - Browse repository at this point
Copy the full SHA 8bb6f8dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3b7528b - Browse repository at this point
Copy the full SHA 3b7528bView commit details -
Configuration menu - View commit details
-
Copy full SHA for ecbef81 - Browse repository at this point
Copy the full SHA ecbef81View commit details -
Configuration menu - View commit details
-
Copy full SHA for e650daf - Browse repository at this point
Copy the full SHA e650dafView commit details -
Configuration menu - View commit details
-
Copy full SHA for a4f1a7b - Browse repository at this point
Copy the full SHA a4f1a7bView commit details -
Configuration menu - View commit details
-
Copy full SHA for f751bb1 - Browse repository at this point
Copy the full SHA f751bb1View commit details -
Configuration menu - View commit details
-
Copy full SHA for b09d193 - Browse repository at this point
Copy the full SHA b09d193View commit details -
Configuration menu - View commit details
-
Copy full SHA for 47fd35e - Browse repository at this point
Copy the full SHA 47fd35eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7cdaaf0 - Browse repository at this point
Copy the full SHA 7cdaaf0View commit details -
Configuration menu - View commit details
-
Copy full SHA for e942ab1 - Browse repository at this point
Copy the full SHA e942ab1View commit details
Commits on Nov 15, 2024
-
Configuration menu - View commit details
-
Copy full SHA for ef1f34c - Browse repository at this point
Copy the full SHA ef1f34cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 118c3fd - Browse repository at this point
Copy the full SHA 118c3fdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 99a9891 - Browse repository at this point
Copy the full SHA 99a9891View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5435dd8 - Browse repository at this point
Copy the full SHA 5435dd8View commit details -
Configuration menu - View commit details
-
Copy full SHA for d5decbe - Browse repository at this point
Copy the full SHA d5decbeView commit details
Commits on Nov 16, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 054c960 - Browse repository at this point
Copy the full SHA 054c960View commit details
Commits on Nov 18, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 4ad4cf3 - Browse repository at this point
Copy the full SHA 4ad4cf3View commit details
Commits on Nov 20, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 9ba47a7 - Browse repository at this point
Copy the full SHA 9ba47a7View commit details -
Configuration menu - View commit details
-
Copy full SHA for baf851f - Browse repository at this point
Copy the full SHA baf851fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 455c46c - Browse repository at this point
Copy the full SHA 455c46cView commit details
Commits on Nov 23, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 54af017 - Browse repository at this point
Copy the full SHA 54af017View commit details
Commits on Nov 24, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 16be94a - Browse repository at this point
Copy the full SHA 16be94aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 027de8e - Browse repository at this point
Copy the full SHA 027de8eView commit details -
Configuration menu - View commit details
-
Copy full SHA for bf1501c - Browse repository at this point
Copy the full SHA bf1501cView commit details -
Configuration menu - View commit details
-
Copy full SHA for c6054c2 - Browse repository at this point
Copy the full SHA c6054c2View commit details -
Configuration menu - View commit details
-
Copy full SHA for ed42dc5 - Browse repository at this point
Copy the full SHA ed42dc5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9eb39d8 - Browse repository at this point
Copy the full SHA 9eb39d8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 523d151 - Browse repository at this point
Copy the full SHA 523d151View commit details -
Configuration menu - View commit details
-
Copy full SHA for 196d2f5 - Browse repository at this point
Copy the full SHA 196d2f5View commit details -
Configuration menu - View commit details
-
Copy full SHA for b60d55f - Browse repository at this point
Copy the full SHA b60d55fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2b2e8cd - Browse repository at this point
Copy the full SHA 2b2e8cdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1b9580d - Browse repository at this point
Copy the full SHA 1b9580dView commit details -
Configuration menu - View commit details
-
Copy full SHA for df506fa - Browse repository at this point
Copy the full SHA df506faView commit details -
Configuration menu - View commit details
-
Copy full SHA for e08f930 - Browse repository at this point
Copy the full SHA e08f930View commit details -
Configuration menu - View commit details
-
Copy full SHA for e3ff6ea - Browse repository at this point
Copy the full SHA e3ff6eaView commit details -
Configuration menu - View commit details
-
Copy full SHA for aba232e - Browse repository at this point
Copy the full SHA aba232eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 111913d - Browse repository at this point
Copy the full SHA 111913dView commit details -
Configuration menu - View commit details
-
Copy full SHA for ed85186 - Browse repository at this point
Copy the full SHA ed85186View commit details -
Configuration menu - View commit details
-
Copy full SHA for edaa301 - Browse repository at this point
Copy the full SHA edaa301View commit details -
Configuration menu - View commit details
-
Copy full SHA for fd8a629 - Browse repository at this point
Copy the full SHA fd8a629View commit details -
Configuration menu - View commit details
-
Copy full SHA for 576bb13 - Browse repository at this point
Copy the full SHA 576bb13View commit details -
Configuration menu - View commit details
-
Copy full SHA for 53b744e - Browse repository at this point
Copy the full SHA 53b744eView commit details -
Configuration menu - View commit details
-
Copy full SHA for c057fd5 - Browse repository at this point
Copy the full SHA c057fd5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5f1e36b - Browse repository at this point
Copy the full SHA 5f1e36bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5bae7a8 - Browse repository at this point
Copy the full SHA 5bae7a8View commit details -
Revert "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
This reverts commit c057fd5.
Configuration menu - View commit details
-
Copy full SHA for 03d46de - Browse repository at this point
Copy the full SHA 03d46deView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2798340 - Browse repository at this point
Copy the full SHA 2798340View commit details -
Configuration menu - View commit details
-
Copy full SHA for a18081c - Browse repository at this point
Copy the full SHA a18081cView commit details -
Configuration menu - View commit details
-
Copy full SHA for fcd62af - Browse repository at this point
Copy the full SHA fcd62afView commit details -
Configuration menu - View commit details
-
Copy full SHA for 700a85f - Browse repository at this point
Copy the full SHA 700a85fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 24c24f6 - Browse repository at this point
Copy the full SHA 24c24f6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1fc3c6e - Browse repository at this point
Copy the full SHA 1fc3c6eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0d5f42d - Browse repository at this point
Copy the full SHA 0d5f42dView commit details -
Configuration menu - View commit details
-
Copy full SHA for bd7c378 - Browse repository at this point
Copy the full SHA bd7c378View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6077958 - Browse repository at this point
Copy the full SHA 6077958View commit details -
Configuration menu - View commit details
-
Copy full SHA for c1e77ec - Browse repository at this point
Copy the full SHA c1e77ecView commit details
Commits on Nov 25, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 9346710 - Browse repository at this point
Copy the full SHA 9346710View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2d54b04 - Browse repository at this point
Copy the full SHA 2d54b04View commit details -
Configuration menu - View commit details
-
Copy full SHA for dc8b35a - Browse repository at this point
Copy the full SHA dc8b35aView commit details -
Configuration menu - View commit details
-
Copy full SHA for c30d179 - Browse repository at this point
Copy the full SHA c30d179View commit details -
Configuration menu - View commit details
-
Copy full SHA for dcda316 - Browse repository at this point
Copy the full SHA dcda316View commit details -
Configuration menu - View commit details
-
Copy full SHA for 69decfb - Browse repository at this point
Copy the full SHA 69decfbView commit details
Commits on Nov 27, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 34b5bd7 - Browse repository at this point
Copy the full SHA 34b5bd7View commit details -
New bug: Arrivals shuttle starts depressurized. PROBABLY something wi…
…th map_template.dm
Configuration menu - View commit details
-
Copy full SHA for 6bdabd1 - Browse repository at this point
Copy the full SHA 6bdabd1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 67ef2c2 - Browse repository at this point
Copy the full SHA 67ef2c2View commit details -
Configuration menu - View commit details
-
Copy full SHA for a72c558 - Browse repository at this point
Copy the full SHA a72c558View commit details
Commits on Nov 28, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 6a314b1 - Browse repository at this point
Copy the full SHA 6a314b1View commit details
Commits on Nov 29, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 29cf655 - Browse repository at this point
Copy the full SHA 29cf655View commit details -
Configuration menu - View commit details
-
Copy full SHA for b1f8bb7 - Browse repository at this point
Copy the full SHA b1f8bb7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0f2389c - Browse repository at this point
Copy the full SHA 0f2389cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3d5b02a - Browse repository at this point
Copy the full SHA 3d5b02aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6d32b4a - Browse repository at this point
Copy the full SHA 6d32b4aView commit details
Commits on Nov 30, 2024
-
Configuration menu - View commit details
-
Copy full SHA for be239ab - Browse repository at this point
Copy the full SHA be239abView commit details -
Configuration menu - View commit details
-
Copy full SHA for 939b389 - Browse repository at this point
Copy the full SHA 939b389View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2c2d39f - Browse repository at this point
Copy the full SHA 2c2d39fView commit details -
Configuration menu - View commit details
-
Copy full SHA for a171542 - Browse repository at this point
Copy the full SHA a171542View commit details -
Configuration menu - View commit details
-
Copy full SHA for 41fec02 - Browse repository at this point
Copy the full SHA 41fec02View commit details -
Configuration menu - View commit details
-
Copy full SHA for b99c8eb - Browse repository at this point
Copy the full SHA b99c8ebView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0ad6502 - Browse repository at this point
Copy the full SHA 0ad6502View commit details