Skip to content

Commit

Permalink
Use string convar flags (#740)
Browse files Browse the repository at this point in the history
Uses string names for convars (been supported since refactor but not yet
used) rather than magic numbers

Co-authored-by: BobTheBob <[email protected]>
  • Loading branch information
GeckoEidechse and BobTheBob9 authored Oct 10, 2023
1 parent 9eede60 commit 70c599a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Northstar.Client/mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@
{
"Name": "modlist_show_convars",
"DefaultValue": "0",
"Flags": 16777216
"Flags": "ARCHIVE_PLAYERPROFILE"
},
{
"Name": "modlist_reverse",
"DefaultValue": "0",
"Flags": 16777216
"Flags": "ARCHIVE_PLAYERPROFILE"
}
],
"Scripts": [
Expand Down
2 changes: 1 addition & 1 deletion Northstar.CustomServers/mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
{
"Name": "ns_allow_spectators",
"DefaultValue": "0",
"Flags": 8192
"Flags": "REPLICATED"
},
{
"Name": "ns_private_match_last_mode",
Expand Down

0 comments on commit 70c599a

Please sign in to comment.