Skip to content

Commit

Permalink
Merge branch 'main' into refactor/mod-information-file-export
Browse files Browse the repository at this point in the history
  • Loading branch information
Alystrasz authored Mar 2, 2025
2 parents 05b7d8d + c7e2d7e commit 1b24f48
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ jobs:
- name: Build
run: cmake --build build/
- name: Upload launcher build as artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: northstar-launcher
path: |
build/game/*.exe
build/game/*.dll
build/game/bin/x64_retail/*.dll
- name: Upload debug build artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: launcher-debug-files
path: |
Expand All @@ -53,12 +53,12 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Download compiled launcher
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: northstar-launcher
path: northstar-launcher
- name: Download compiled launcher
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: launcher-debug-files
path: launcher-debug-files
Expand Down
1 change: 1 addition & 0 deletions primedev/shared/misccommands.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,7 @@ void FixupCvarFlags()
// these 2 could be FCVAR_CHEAT, i guess?
{"cl_draw_player_model", FCVAR_DEVELOPMENTONLY},
{"cl_always_draw_3p_player", FCVAR_DEVELOPMENTONLY},
{"cl_gib_lifetime", FCVAR_CHEAT},
{"idcolor_neutral", FCVAR_DEVELOPMENTONLY},
{"idcolor_ally", FCVAR_DEVELOPMENTONLY},
{"idcolor_ally_cb1", FCVAR_DEVELOPMENTONLY},
Expand Down

0 comments on commit 1b24f48

Please sign in to comment.