diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-10-10 15:04:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-10 15:04:47 +0200 |
commit | 70c599a345bf5be16ae76d98de2943ee388e6d07 (patch) | |
tree | a139c3796afae7d4cf121a32a040531f441792d1 | |
parent | 9eede6047a18d9936b2d98c1499cc90bd8d091d7 (diff) | |
download | NorthstarMods-70c599a345bf5be16ae76d98de2943ee388e6d07.tar.gz NorthstarMods-70c599a345bf5be16ae76d98de2943ee388e6d07.zip |
Use string convar flags (#740)
Uses string names for convars (been supported since refactor but not yet
used) rather than magic numbers
Co-authored-by: BobTheBob <32057864+BobTheBob9@users.noreply.github.com>
-rw-r--r-- | Northstar.Client/mod.json | 4 | ||||
-rw-r--r-- | Northstar.CustomServers/mod.json | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Northstar.Client/mod.json b/Northstar.Client/mod.json index f7c7c9b5..a22f49fd 100644 --- a/Northstar.Client/mod.json +++ b/Northstar.Client/mod.json @@ -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": [ diff --git a/Northstar.CustomServers/mod.json b/Northstar.CustomServers/mod.json index e6f2c4b7..de3fcd0d 100644 --- a/Northstar.CustomServers/mod.json +++ b/Northstar.CustomServers/mod.json @@ -20,7 +20,7 @@ { "Name": "ns_allow_spectators", "DefaultValue": "0", - "Flags": 8192 + "Flags": "REPLICATED" }, { "Name": "ns_private_match_last_mode", |