Skip to content
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

Draft
wants to merge 322 commits into
base: master
Choose a base branch
from
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Aug 31, 2024

  1. 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
    LemonInTheDark authored and JixS4v committed Aug 31, 2024
    Configuration menu
    Copy the full SHA
    297742f View commit details
    Browse the repository at this point in the history
  2. updates DME

    JixS4v committed Aug 31, 2024
    Configuration menu
    Copy the full SHA
    62b38ad View commit details
    Browse the repository at this point in the history
  3. DME got fucked up somehow

    JixS4v committed Aug 31, 2024
    Configuration menu
    Copy the full SHA
    38d7a46 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    46db896 View commit details
    Browse the repository at this point in the history
  5. 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
    LemonInTheDark authored and JixS4v committed Aug 31, 2024
    Configuration menu
    Copy the full SHA
    cf29d59 View commit details
    Browse the repository at this point in the history
  6. did a silly

    JixS4v committed Aug 31, 2024
    Configuration menu
    Copy the full SHA
    3754526 View commit details
    Browse the repository at this point in the history
  7. GET MOLES??? IS THAT YOU???

    JixS4v committed Aug 31, 2024
    Configuration menu
    Copy the full SHA
    2ce2fc1 View commit details
    Browse the repository at this point in the history
  8. Welcome back get_moles

    This reverts commit 4979288.
    JixS4v committed Aug 31, 2024
    Configuration menu
    Copy the full SHA
    a10ffb4 View commit details
    Browse the repository at this point in the history
  9. Shitcode 2

    JixS4v committed Aug 31, 2024
    Configuration menu
    Copy the full SHA
    1754d73 View commit details
    Browse the repository at this point in the history
  10. Bullshit

    JixS4v committed Aug 31, 2024
    Configuration menu
    Copy the full SHA
    bf2c064 View commit details
    Browse the repository at this point in the history
  11. Less warnings more gooder

    JixS4v committed Aug 31, 2024
    Configuration menu
    Copy the full SHA
    997880a View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    eacd012 View commit details
    Browse the repository at this point in the history

Commits on Sep 2, 2024

  1. Kills atmos callbacks

    JixS4v committed Sep 2, 2024
    Configuration menu
    Copy the full SHA
    d21e4ab View commit details
    Browse the repository at this point in the history
  2. Update beestation.dme

    JixS4v committed Sep 2, 2024
    Configuration menu
    Copy the full SHA
    dabd6e3 View commit details
    Browse the repository at this point in the history
  3. Revert "Kills atmos callbacks"

    This reverts commit d21e4ab.
    JixS4v committed Sep 2, 2024
    Configuration menu
    Copy the full SHA
    00ecc2b View commit details
    Browse the repository at this point in the history
  4. Revert "Update beestation.dme"

    This reverts commit dabd6e3.
    JixS4v committed Sep 2, 2024
    Configuration menu
    Copy the full SHA
    4e8037e View commit details
    Browse the repository at this point in the history
  5. Silly me

    JixS4v committed Sep 2, 2024
    Configuration menu
    Copy the full SHA
    b5abcb0 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    8c77d0a View commit details
    Browse the repository at this point in the history
  7. Nicer defines

    JixS4v committed Sep 2, 2024
    Configuration menu
    Copy the full SHA
    5faa2ae View commit details
    Browse the repository at this point in the history
  8. joelogbybolb special

    JixS4v committed Sep 2, 2024
    Configuration menu
    Copy the full SHA
    ee2a41a View commit details
    Browse the repository at this point in the history
  9. deltastation being silly

    JixS4v committed Sep 2, 2024
    Configuration menu
    Copy the full SHA
    289ac18 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    d67a07b View commit details
    Browse the repository at this point in the history
  11. mesa very stupid

    JixS4v committed Sep 2, 2024
    Configuration menu
    Copy the full SHA
    bcdc28d View commit details
    Browse the repository at this point in the history
  12. Merge branch 'master' of https://github.com/BeeStation/BeeStation-Hornet

     into LINDA-FINALLY!!!!!!!!
    JixS4v committed Sep 2, 2024
    Configuration menu
    Copy the full SHA
    8061855 View commit details
    Browse the repository at this point in the history
  13. 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)
    LemonInTheDark authored and JixS4v committed Sep 2, 2024
    Configuration menu
    Copy the full SHA
    907c1f4 View commit details
    Browse the repository at this point in the history
  14. fixes, still compiles

    JixS4v committed Sep 2, 2024
    Configuration menu
    Copy the full SHA
    7955990 View commit details
    Browse the repository at this point in the history

Commits on Sep 3, 2024

  1. no dilly-dallying

    JixS4v committed Sep 3, 2024
    Configuration menu
    Copy the full SHA
    2187181 View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2024

  1. Deconflict

    JixS4v committed Sep 8, 2024
    Configuration menu
    Copy the full SHA
    20a2ad3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ada712f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2a9dbc3 View commit details
    Browse the repository at this point in the history
  4. Arlongus

    JixS4v committed Sep 8, 2024
    Configuration menu
    Copy the full SHA
    fafaba6 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    f7cceef View commit details
    Browse the repository at this point in the history
  6. beince

    JixS4v committed Sep 8, 2024
    Configuration menu
    Copy the full SHA
    ed06a40 View commit details
    Browse the repository at this point in the history
  7. Revert moonoutpost changes

    JixS4v committed Sep 8, 2024
    Configuration menu
    Copy the full SHA
    54f3a00 View commit details
    Browse the repository at this point in the history
  8. Tests

    JixS4v committed Sep 8, 2024
    Configuration menu
    Copy the full SHA
    781fe42 View commit details
    Browse the repository at this point in the history
  9. amog us

    JixS4v committed Sep 8, 2024
    Configuration menu
    Copy the full SHA
    295015d View commit details
    Browse the repository at this point in the history
  10. Rerun test

    JixS4v committed Sep 8, 2024
    Configuration menu
    Copy the full SHA
    12aea53 View commit details
    Browse the repository at this point in the history
  11. bingul

    JixS4v committed Sep 8, 2024
    Configuration menu
    Copy the full SHA
    676c4ed View commit details
    Browse the repository at this point in the history
  12. mogus

    JixS4v committed Sep 8, 2024
    Configuration menu
    Copy the full SHA
    a4b3eb7 View commit details
    Browse the repository at this point in the history
  13. Fix

    JixS4v committed Sep 8, 2024
    Configuration menu
    Copy the full SHA
    ea78aa2 View commit details
    Browse the repository at this point in the history
  14. cancel culture

    JixS4v committed Sep 8, 2024
    Configuration menu
    Copy the full SHA
    8b822a6 View commit details
    Browse the repository at this point in the history
  15. Linter pleasing

    JixS4v committed Sep 8, 2024
    Configuration menu
    Copy the full SHA
    2fee225 View commit details
    Browse the repository at this point in the history
  16. Lints

    JixS4v committed Sep 8, 2024
    Configuration menu
    Copy the full SHA
    542839d View commit details
    Browse the repository at this point in the history
  17. Arlongus

    JixS4v committed Sep 8, 2024
    Configuration menu
    Copy the full SHA
    3389b22 View commit details
    Browse the repository at this point in the history
  18. Bingle

    JixS4v committed Sep 8, 2024
    Configuration menu
    Copy the full SHA
    aa6ac49 View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2024

  1. Deconflict :(

    RatonSS13 committed Sep 13, 2024
    Configuration menu
    Copy the full SHA
    be71b45 View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2024

  1. Merge branch 'master' of https://github.com/BeeStation/BeeStation-Hornet

     into LINDA-FINALLY!!!!!!!!
    JixS4v committed Sep 20, 2024
    Configuration menu
    Copy the full SHA
    e7b1e5b View commit details
    Browse the repository at this point in the history
  2. 🧌

    JixS4v committed Sep 20, 2024
    Configuration menu
    Copy the full SHA
    e59dc92 View commit details
    Browse the repository at this point in the history
  3. I guess no 515 (literally :trollface:)

    JixS4v committed Sep 20, 2024
    Configuration menu
    Copy the full SHA
    e4fb506 View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2024

  1. Configuration menu
    Copy the full SHA
    eb7598c View commit details
    Browse the repository at this point in the history
  2. it boots

    XeonMations committed Oct 31, 2024
    Configuration menu
    Copy the full SHA
    62ca29a View commit details
    Browse the repository at this point in the history
  3. 65591

    XeonMations committed Oct 31, 2024
    Configuration menu
    Copy the full SHA
    869d6f1 View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2024

  1. fdssdazfdsfasdf

    XeonMations committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    1a60da1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    074b7e8 View commit details
    Browse the repository at this point in the history
  3. Update datum_pipeline.dm

    XeonMations committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    ba4504b View commit details
    Browse the repository at this point in the history
  4. unifinished

    XeonMations committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    58d5c41 View commit details
    Browse the repository at this point in the history
  5. Update tank_types.dm

    XeonMations committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    7fe02fd View commit details
    Browse the repository at this point in the history
  6. UpdatePaths Script!

    XeonMations committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    500d78d View commit details
    Browse the repository at this point in the history
  7. Update moonoutpost19.dmm

    XeonMations committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    1eb4585 View commit details
    Browse the repository at this point in the history
  8. superconduction...

    XeonMations committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    f3dc661 View commit details
    Browse the repository at this point in the history
  9. Update minerals.dm

    XeonMations committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    3aa0002 View commit details
    Browse the repository at this point in the history
  10. fixed your tanks!

    HowToLoLu committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    c814096 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    c51eb7a View commit details
    Browse the repository at this point in the history
  12. Update _unit_tests.dm

    XeonMations committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    52c1939 View commit details
    Browse the repository at this point in the history
  13. Merge pull request #10 from HowToLoLu/Linda-Recoup

    Fixed your tanks!
    XeonMations authored Nov 1, 2024
    Configuration menu
    Copy the full SHA
    eaa0d93 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    627c67e View commit details
    Browse the repository at this point in the history
  15. 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
    XeonMations authored Nov 1, 2024
    Configuration menu
    Copy the full SHA
    cf5d54e View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    2e545d6 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    06da1ba View commit details
    Browse the repository at this point in the history
  18. Update thermomachine.dm

    XeonMations committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    32b8d58 View commit details
    Browse the repository at this point in the history
  19. aaaa

    XeonMations committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    da1e9d8 View commit details
    Browse the repository at this point in the history
  20. linters...

    XeonMations committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    40d2e0d View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    7c2c3c1 View commit details
    Browse the repository at this point in the history
  22. aaaaa

    XeonMations committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    f91b700 View commit details
    Browse the repository at this point in the history
  23. Update _unit_tests.dm

    XeonMations committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    c1170d9 View commit details
    Browse the repository at this point in the history
  24. lavaland active turfs

    XeonMations committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    a31566d View commit details
    Browse the repository at this point in the history
  25. Update _unit_tests.dm

    XeonMations committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    5cd1e47 View commit details
    Browse the repository at this point in the history
  26. more active turf fixes

    XeonMations committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    b411d98 View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2024

  1. Update atmosmachinery.dm

    XeonMations committed Nov 2, 2024
    Configuration menu
    Copy the full SHA
    a354b90 View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2024

  1. AAAAAAAAAAAAAAAAAAAAA

    XeonMations committed Nov 3, 2024
    Configuration menu
    Copy the full SHA
    8a502d0 View commit details
    Browse the repository at this point in the history
  2. maps

    XeonMations committed Nov 3, 2024
    Configuration menu
    Copy the full SHA
    d33e8c3 View commit details
    Browse the repository at this point in the history
  3. Update tank.dm

    XeonMations committed Nov 3, 2024
    Configuration menu
    Copy the full SHA
    64b865d View commit details
    Browse the repository at this point in the history
  4. hm

    XeonMations committed Nov 3, 2024
    Configuration menu
    Copy the full SHA
    83b0cc1 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d2fc998 View commit details
    Browse the repository at this point in the history
  6. FIXED THE BUG

    XeonMations committed Nov 3, 2024
    Configuration menu
    Copy the full SHA
    a519b84 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    b0d700a View commit details
    Browse the repository at this point in the history
  8. Atmos Control Panel!

    XeonMations committed Nov 3, 2024
    Configuration menu
    Copy the full SHA
    1ac5961 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    03e8bec View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    314cfed View commit details
    Browse the repository at this point in the history
  11. Update atmos_core.dm

    XeonMations committed Nov 3, 2024
    Configuration menu
    Copy the full SHA
    0a08baf View commit details
    Browse the repository at this point in the history
  12. RAHHHHHHHHHHHHH

    XeonMations committed Nov 3, 2024
    Configuration menu
    Copy the full SHA
    2abf01a View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    79a2459 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    63c4013 View commit details
    Browse the repository at this point in the history
  15. no more proto canisters

    XeonMations committed Nov 3, 2024
    Configuration menu
    Copy the full SHA
    17a61ce View commit details
    Browse the repository at this point in the history
  16. aaaaaaaaaaaaaaaa

    XeonMations committed Nov 3, 2024
    Configuration menu
    Copy the full SHA
    cb61f6d View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2024

  1. aaaa

    XeonMations committed Nov 4, 2024
    Configuration menu
    Copy the full SHA
    b2847f0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0be7a15 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1c9444d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    94f2541 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    f3e747d View commit details
    Browse the repository at this point in the history
  6. Update turfs.dm

    XeonMations committed Nov 4, 2024
    Configuration menu
    Copy the full SHA
    aa077e6 View commit details
    Browse the repository at this point in the history
  7. Update canister.dm

    XeonMations committed Nov 4, 2024
    Configuration menu
    Copy the full SHA
    2540b3b View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2024

  1. Configuration menu
    Copy the full SHA
    0865ece View commit details
    Browse the repository at this point in the history
  2. Merge pull request #12 from HowToLoLu/Linda-Recoup

    [Linda-Recoup] Maps? Maps! MAAAAAAAAAAAPS!!
    XeonMations authored Nov 5, 2024
    Configuration menu
    Copy the full SHA
    7f67076 View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2024

  1. Update KiloStation.dmm

    XeonMations committed Nov 6, 2024
    Configuration menu
    Copy the full SHA
    2ad24ae View commit details
    Browse the repository at this point in the history
  2. Update KiloStation.dmm

    XeonMations committed Nov 6, 2024
    Configuration menu
    Copy the full SHA
    78f7875 View commit details
    Browse the repository at this point in the history
  3. aaaaa

    XeonMations committed Nov 6, 2024
    Configuration menu
    Copy the full SHA
    8123cd6 View commit details
    Browse the repository at this point in the history
  4. aaaa

    XeonMations committed Nov 6, 2024
    Configuration menu
    Copy the full SHA
    a87900b View commit details
    Browse the repository at this point in the history
  5. fix

    XeonMations committed Nov 6, 2024
    Configuration menu
    Copy the full SHA
    94f8888 View commit details
    Browse the repository at this point in the history
  6. progress

    XeonMations committed Nov 6, 2024
    Configuration menu
    Copy the full SHA
    c5d2e86 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    b756a67 View commit details
    Browse the repository at this point in the history
  8. aaa

    XeonMations committed Nov 6, 2024
    Configuration menu
    Copy the full SHA
    5481d4d View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2024

  1. Configuration menu
    Copy the full SHA
    1d1514b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    211392e View commit details
    Browse the repository at this point in the history
  3. hjvhvjh

    XeonMations committed Nov 7, 2024
    Configuration menu
    Copy the full SHA
    6a20df7 View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2024

  1. progress

    XeonMations committed Nov 8, 2024
    Configuration menu
    Copy the full SHA
    43470dd View commit details
    Browse the repository at this point in the history
  2. thermomachine

    XeonMations committed Nov 8, 2024
    Configuration menu
    Copy the full SHA
    7f0e852 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    68de128 View commit details
    Browse the repository at this point in the history
  4. dsaDADS

    XeonMations committed Nov 8, 2024
    Configuration menu
    Copy the full SHA
    37b7ebe View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2024

  1. aaaa

    XeonMations committed Nov 10, 2024
    Configuration menu
    Copy the full SHA
    abd6c70 View commit details
    Browse the repository at this point in the history
  2. colobrlind

    XeonMations committed Nov 10, 2024
    Configuration menu
    Copy the full SHA
    26d1f1c View commit details
    Browse the repository at this point in the history
  3. pluoxim

    XeonMations committed Nov 10, 2024
    Configuration menu
    Copy the full SHA
    d5784c8 View commit details
    Browse the repository at this point in the history
  4. HT pipe fixes

    XeonMations committed Nov 10, 2024
    Configuration menu
    Copy the full SHA
    2910544 View commit details
    Browse the repository at this point in the history
  5. THERMOMACHINES DONE

    XeonMations committed Nov 10, 2024
    Configuration menu
    Copy the full SHA
    56229bd View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2024

  1. pipes...

    XeonMations committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    c369cf1 View commit details
    Browse the repository at this point in the history
  2. meters

    XeonMations committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    2b78f58 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    72537fb View commit details
    Browse the repository at this point in the history
  4. sdasadads

    XeonMations committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    ce16cca View commit details
    Browse the repository at this point in the history
  5. 44 errors on the wall, 44 errors to patch, take one down, patch it ar…

    …ound, 5122 bugs on the wall
    XeonMations committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    fdffca0 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    e5a2622 View commit details
    Browse the repository at this point in the history
  7. temperatre

    XeonMations committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    b406d86 View commit details
    Browse the repository at this point in the history
  8. asdadsdasds

    XeonMations committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    48529f3 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    b2d132b View commit details
    Browse the repository at this point in the history
  10. dasdas

    XeonMations committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    05d96e5 View commit details
    Browse the repository at this point in the history
  11. Update filter.dm

    XeonMations committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    d01d51d View commit details
    Browse the repository at this point in the history
  12. now for MAPS

    XeonMations committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    826498c View commit details
    Browse the repository at this point in the history
  13. linda boots atleast

    XeonMations committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    16cddd4 View commit details
    Browse the repository at this point in the history
  14. dasdasads

    XeonMations committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    c2f78d8 View commit details
    Browse the repository at this point in the history
  15. Update 11813_LINDA.txt

    XeonMations committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    8e0987b View commit details
    Browse the repository at this point in the history
  16. asddas

    XeonMations committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    b3c5632 View commit details
    Browse the repository at this point in the history
  17. asdadsads

    XeonMations committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    c7251be View commit details
    Browse the repository at this point in the history
  18. newline

    XeonMations committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    6dba3ab View commit details
    Browse the repository at this point in the history
  19. toxins...

    XeonMations committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    2f02cd3 View commit details
    Browse the repository at this point in the history
  20. horror

    XeonMations committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    74f87b9 View commit details
    Browse the repository at this point in the history
  21. fixes

    XeonMations committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    8341356 View commit details
    Browse the repository at this point in the history
  22. funny errorssss

    XeonMations committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    c948202 View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2024

  1. icons + missing file

    XeonMations committed Nov 12, 2024
    Configuration menu
    Copy the full SHA
    536ed73 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    155ed91 View commit details
    Browse the repository at this point in the history
  3. radstationssss

    XeonMations committed Nov 12, 2024
    Configuration menu
    Copy the full SHA
    b558313 View commit details
    Browse the repository at this point in the history
  4. dasonbodsanlkdjosnladko

    XeonMations committed Nov 12, 2024
    Configuration menu
    Copy the full SHA
    47715a8 View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2024

  1. Configuration menu
    Copy the full SHA
    522fecd View commit details
    Browse the repository at this point in the history
  2. temperature pump fix

    XeonMations committed Nov 13, 2024
    Configuration menu
    Copy the full SHA
    085dfb1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    33b98bf View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    adbd2c1 View commit details
    Browse the repository at this point in the history
  5. linda fucking works

    XeonMations committed Nov 13, 2024
    Configuration menu
    Copy the full SHA
    b0f6208 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    9c04db5 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    888af59 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    d689540 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    4d501a3 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    2d925ca View commit details
    Browse the repository at this point in the history
  11. Update supermatter.dm

    XeonMations committed Nov 13, 2024
    Configuration menu
    Copy the full SHA
    b28d027 View commit details
    Browse the repository at this point in the history
  12. fusion.

    XeonMations committed Nov 13, 2024
    Configuration menu
    Copy the full SHA
    e18eff9 View commit details
    Browse the repository at this point in the history
  13. fixes for the last commit

    XeonMations committed Nov 13, 2024
    Configuration menu
    Copy the full SHA
    e5c11fa View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    ab62791 View commit details
    Browse the repository at this point in the history
  15. less pluoxium from SM

    XeonMations committed Nov 13, 2024
    Configuration menu
    Copy the full SHA
    fa207ee View commit details
    Browse the repository at this point in the history
  16. circuits the circuitening

    XeonMations committed Nov 13, 2024
    Configuration menu
    Copy the full SHA
    e55b57f View commit details
    Browse the repository at this point in the history
  17. atmos control stuff

    XeonMations committed Nov 13, 2024
    Configuration menu
    Copy the full SHA
    5a212be View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    fbd0f40 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    179c8a7 View commit details
    Browse the repository at this point in the history
  20. mmmmm

    XeonMations committed Nov 13, 2024
    Configuration menu
    Copy the full SHA
    c638aff View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2024

  1. Configuration menu
    Copy the full SHA
    abb6bcb View commit details
    Browse the repository at this point in the history
  2. Update explosion.dm

    XeonMations committed Nov 14, 2024
    Configuration menu
    Copy the full SHA
    8bb6f8d View commit details
    Browse the repository at this point in the history
  3. Update reactions.dm

    XeonMations committed Nov 14, 2024
    Configuration menu
    Copy the full SHA
    3b7528b View commit details
    Browse the repository at this point in the history
  4. progress

    XeonMations committed Nov 14, 2024
    Configuration menu
    Copy the full SHA
    ecbef81 View commit details
    Browse the repository at this point in the history
  5. optimizaitons

    XeonMations committed Nov 14, 2024
    Configuration menu
    Copy the full SHA
    e650daf View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    a4f1a7b View commit details
    Browse the repository at this point in the history
  7. mmmm atmos tolerances

    XeonMations committed Nov 14, 2024
    Configuration menu
    Copy the full SHA
    f751bb1 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    b09d193 View commit details
    Browse the repository at this point in the history
  9. pumpsdsss

    XeonMations committed Nov 14, 2024
    Configuration menu
    Copy the full SHA
    47fd35e View commit details
    Browse the repository at this point in the history
  10. asdsadsa

    XeonMations committed Nov 14, 2024
    Configuration menu
    Copy the full SHA
    7cdaaf0 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    e942ab1 View commit details
    Browse the repository at this point in the history

Commits on Nov 15, 2024

  1. progress

    XeonMations committed Nov 15, 2024
    Configuration menu
    Copy the full SHA
    ef1f34c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    118c3fd View commit details
    Browse the repository at this point in the history
  3. hmmmm

    XeonMations committed Nov 15, 2024
    Configuration menu
    Copy the full SHA
    99a9891 View commit details
    Browse the repository at this point in the history
  4. aaaaa

    XeonMations committed Nov 15, 2024
    Configuration menu
    Copy the full SHA
    5435dd8 View commit details
    Browse the repository at this point in the history
  5. aaaa

    XeonMations committed Nov 15, 2024
    Configuration menu
    Copy the full SHA
    d5decbe View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2024

  1. Configuration menu
    Copy the full SHA
    054c960 View commit details
    Browse the repository at this point in the history

Commits on Nov 18, 2024

  1. Configuration menu
    Copy the full SHA
    4ad4cf3 View commit details
    Browse the repository at this point in the history

Commits on Nov 20, 2024

  1. aaa

    XeonMations committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    9ba47a7 View commit details
    Browse the repository at this point in the history
  2. undo maps

    XeonMations committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    baf851f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    455c46c View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2024

  1. Configuration menu
    Copy the full SHA
    54af017 View commit details
    Browse the repository at this point in the history

Commits on Nov 24, 2024

  1. Configuration menu
    Copy the full SHA
    16be94a View commit details
    Browse the repository at this point in the history
  2. touching the RBMK

    XeonMations committed Nov 24, 2024
    Configuration menu
    Copy the full SHA
    027de8e View commit details
    Browse the repository at this point in the history
  3. Update CentCom.dmm

    XeonMations committed Nov 24, 2024
    Configuration menu
    Copy the full SHA
    bf1501c View commit details
    Browse the repository at this point in the history
  4. hh

    XeonMations committed Nov 24, 2024
    Configuration menu
    Copy the full SHA
    c6054c2 View commit details
    Browse the repository at this point in the history
  5. Update volume_pump.dm

    XeonMations committed Nov 24, 2024
    Configuration menu
    Copy the full SHA
    ed42dc5 View commit details
    Browse the repository at this point in the history
  6. Update atmosmachinery.dm

    XeonMations committed Nov 24, 2024
    Configuration menu
    Copy the full SHA
    9eb39d8 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    523d151 View commit details
    Browse the repository at this point in the history
  8. Update atmos_sensitive.dm

    XeonMations committed Nov 24, 2024
    Configuration menu
    Copy the full SHA
    196d2f5 View commit details
    Browse the repository at this point in the history
  9. more mapping helpers

    XeonMations committed Nov 24, 2024
    Configuration menu
    Copy the full SHA
    b60d55f View commit details
    Browse the repository at this point in the history
  10. fixed filters

    XeonMations committed Nov 24, 2024
    Configuration menu
    Copy the full SHA
    2b2e8cd View commit details
    Browse the repository at this point in the history
  11. Update gas_mixture.dm

    XeonMations committed Nov 24, 2024
    Configuration menu
    Copy the full SHA
    1b9580d View commit details
    Browse the repository at this point in the history
  12. AAAAAAAAAAAAAAAAA

    XeonMations committed Nov 24, 2024
    Configuration menu
    Copy the full SHA
    df506fa View commit details
    Browse the repository at this point in the history
  13. rahhhh

    XeonMations committed Nov 24, 2024
    Configuration menu
    Copy the full SHA
    e08f930 View commit details
    Browse the repository at this point in the history
  14. Update Malf_Modules.dm

    XeonMations committed Nov 24, 2024
    Configuration menu
    Copy the full SHA
    e3ff6ea View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    aba232e View commit details
    Browse the repository at this point in the history
  16. cryo cells....

    XeonMations committed Nov 24, 2024
    Configuration menu
    Copy the full SHA
    111913d View commit details
    Browse the repository at this point in the history
  17. canisterssss

    XeonMations committed Nov 24, 2024
    Configuration menu
    Copy the full SHA
    ed85186 View commit details
    Browse the repository at this point in the history
  18. aaaaaaaaaaa

    XeonMations committed Nov 24, 2024
    Configuration menu
    Copy the full SHA
    edaa301 View commit details
    Browse the repository at this point in the history
  19. Update tank_types.dm

    XeonMations committed Nov 24, 2024
    Configuration menu
    Copy the full SHA
    fd8a629 View commit details
    Browse the repository at this point in the history
  20. Update scanners.dm

    XeonMations committed Nov 24, 2024
    Configuration menu
    Copy the full SHA
    576bb13 View commit details
    Browse the repository at this point in the history
  21. Update atmospherics.dm

    XeonMations committed Nov 24, 2024
    Configuration menu
    Copy the full SHA
    53b744e View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    c057fd5 View commit details
    Browse the repository at this point in the history
  23. Update atmospherics.dm

    XeonMations committed Nov 24, 2024
    Configuration menu
    Copy the full SHA
    5f1e36b View commit details
    Browse the repository at this point in the history
  24. Update atmospherics.dm

    XeonMations committed Nov 24, 2024
    Configuration menu
    Copy the full SHA
    5bae7a8 View commit details
    Browse the repository at this point in the history
  25. Revert "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"

    This reverts commit c057fd5.
    XeonMations committed Nov 24, 2024
    Configuration menu
    Copy the full SHA
    03d46de View commit details
    Browse the repository at this point in the history
  26. Update scanners.dm

    XeonMations committed Nov 24, 2024
    Configuration menu
    Copy the full SHA
    2798340 View commit details
    Browse the repository at this point in the history
  27. aaaa

    XeonMations committed Nov 24, 2024
    Configuration menu
    Copy the full SHA
    a18081c View commit details
    Browse the repository at this point in the history
  28. hopefully this shit works

    XeonMations committed Nov 24, 2024
    Configuration menu
    Copy the full SHA
    fcd62af View commit details
    Browse the repository at this point in the history
  29. Update RadStation.dmm

    XeonMations committed Nov 24, 2024
    Configuration menu
    Copy the full SHA
    700a85f View commit details
    Browse the repository at this point in the history
  30. Configuration menu
    Copy the full SHA
    24c24f6 View commit details
    Browse the repository at this point in the history
  31. AGNOSTIC

    XeonMations committed Nov 24, 2024
    Configuration menu
    Copy the full SHA
    1fc3c6e View commit details
    Browse the repository at this point in the history
  32. Update mapping_helpers.dm

    XeonMations committed Nov 24, 2024
    Configuration menu
    Copy the full SHA
    0d5f42d View commit details
    Browse the repository at this point in the history
  33. Update AtmosControls.tsx

    XeonMations committed Nov 24, 2024
    Configuration menu
    Copy the full SHA
    bd7c378 View commit details
    Browse the repository at this point in the history
  34. Configuration menu
    Copy the full SHA
    6077958 View commit details
    Browse the repository at this point in the history
  35. wew

    XeonMations committed Nov 24, 2024
    Configuration menu
    Copy the full SHA
    c1e77ec View commit details
    Browse the repository at this point in the history

Commits on Nov 25, 2024

  1. what

    XeonMations committed Nov 25, 2024
    Configuration menu
    Copy the full SHA
    9346710 View commit details
    Browse the repository at this point in the history
  2. no more stimulum

    XeonMations committed Nov 25, 2024
    Configuration menu
    Copy the full SHA
    2d54b04 View commit details
    Browse the repository at this point in the history
  3. Revert "no more stimulum"

    This reverts commit 2d54b04.
    XeonMations committed Nov 25, 2024
    Configuration menu
    Copy the full SHA
    dc8b35a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c30d179 View commit details
    Browse the repository at this point in the history
  5. colors

    XeonMations committed Nov 25, 2024
    Configuration menu
    Copy the full SHA
    dcda316 View commit details
    Browse the repository at this point in the history
  6. aAAAAAAAAAAAA

    XeonMations committed Nov 25, 2024
    Configuration menu
    Copy the full SHA
    69decfb View commit details
    Browse the repository at this point in the history

Commits on Nov 27, 2024

  1. Update 11813_LINDA.txt

    XeonMations committed Nov 27, 2024
    Configuration menu
    Copy the full SHA
    34b5bd7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6bdabd1 View commit details
    Browse the repository at this point in the history
  3. Rahhhhhh

    XeonMations committed Nov 27, 2024
    Configuration menu
    Copy the full SHA
    67ef2c2 View commit details
    Browse the repository at this point in the history
  4. wew lad

    XeonMations committed Nov 27, 2024
    Configuration menu
    Copy the full SHA
    a72c558 View commit details
    Browse the repository at this point in the history

Commits on Nov 28, 2024

  1. aaaaaaaaaaaa

    XeonMations committed Nov 28, 2024
    Configuration menu
    Copy the full SHA
    6a314b1 View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2024

  1. Configuration menu
    Copy the full SHA
    29cf655 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b1f8bb7 View commit details
    Browse the repository at this point in the history
  3. updatepaths again

    XeonMations committed Nov 29, 2024
    Configuration menu
    Copy the full SHA
    0f2389c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3d5b02a View commit details
    Browse the repository at this point in the history
  5. stuff

    XeonMations committed Nov 29, 2024
    Configuration menu
    Copy the full SHA
    6d32b4a View commit details
    Browse the repository at this point in the history

Commits on Nov 30, 2024

  1. Configuration menu
    Copy the full SHA
    be239ab View commit details
    Browse the repository at this point in the history
  2. rahhh

    XeonMations committed Nov 30, 2024
    Configuration menu
    Copy the full SHA
    939b389 View commit details
    Browse the repository at this point in the history
  3. Update CorgStation.dmm

    XeonMations committed Nov 30, 2024
    Configuration menu
    Copy the full SHA
    2c2d39f View commit details
    Browse the repository at this point in the history
  4. aaaaaa

    XeonMations committed Nov 30, 2024
    Configuration menu
    Copy the full SHA
    a171542 View commit details
    Browse the repository at this point in the history
  5. Update 11813_LINDA.txt

    XeonMations committed Nov 30, 2024
    Configuration menu
    Copy the full SHA
    41fec02 View commit details
    Browse the repository at this point in the history
  6. aaaaaaaa

    XeonMations committed Nov 30, 2024
    Configuration menu
    Copy the full SHA
    b99c8eb View commit details
    Browse the repository at this point in the history
  7. aaaaaaaaaa do shuttles

    XeonMations committed Nov 30, 2024
    Configuration menu
    Copy the full SHA
    0ad6502 View commit details
    Browse the repository at this point in the history