Skip to content

Commit

Permalink
Merge branch 'master' into pr/1416
Browse files Browse the repository at this point in the history
  • Loading branch information
izac112 committed Jan 31, 2024
2 parents 8b3fd69 + 174bfa5 commit f5c4313
Show file tree
Hide file tree
Showing 3 changed files with 359 additions and 89 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
bash tools/ci/install_build_deps.sh
- name: Restore Yarn cache
if: "${{ contains(github.event.pull_request.labels.*.name, 'Type: TGUI Bundle') }}"
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: tgui/.yarn/cache
key: ${{ runner.os }}-yarn-${{ secrets.CACHE_PURGE_KEY }}-${{ hashFiles('tgui/yarn.lock') }}
Expand All @@ -41,7 +41,7 @@ jobs:
- uses: actions/checkout@v4

- name: Cache SpacemanDMM
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/SpacemanDMM
key: ${{ runner.os }}-dreamchecker-${{ hashFiles('dependencies.sh')}}
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
run: |
chmod -R +x ./tools/ci
- name: Setup Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: $HOME/BYOND
key: ${{ runner.os }}-byond
Expand Down
8 changes: 8 additions & 0 deletions code/ATMOSPHERICS/components/unary/vent_pump.dm
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,14 @@
pressure_checks = 2
pressure_checks_default = 2

/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos/relief // YW ADDITION relief vent, that connects to the waste line as a subtype to make it easier to map in
name = "Relief vent"
external_pressure_bound = ONE_ATMOSPHERE+2
external_pressure_bound_default = ONE_ATMOSPHERE+2
pressure_checks = 1
pressure_checks_default = 1
connect_types = CONNECT_TYPE_REGULAR|CONNECT_TYPE_SCRUBBER

/obj/machinery/atmospherics/unary/vent_pump/Initialize()
. = ..()
//soundloop = new(list(src), FALSE)
Expand Down
Loading

0 comments on commit f5c4313

Please sign in to comment.