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

Change CVar config file reference for SS14 PR #33268 #345

Merged
merged 1 commit into from
Nov 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/en/general-development/tips/config-file-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ When a CVar is referred to as `net.port`, that means put `port = foo` under the

## CVar reference

if you want to find a reference of all CVars available in the game/engine, your best bet is to check the game and engine code: [`CCVars.cs` for Space Station 14](https://github.com/space-wizards/space-station-14/blob/master/Content.Shared/CCVar/CCVars.cs), [`CVars.cs` for Robust](https://github.com/space-wizards/RobustToolbox/blob/master/Robust.Shared/CVars.cs). It should be pretty easy to read.
if you want to find a reference of all CVars available in the game/engine, your best bet is to check the game and engine code: [`CCVars.<category>.cs` for Space Station 14](https://github.com/space-wizards/space-station-14/blob/master/Content.Shared/CCVar), [`CVars.cs` for Robust](https://github.com/space-wizards/RobustToolbox/blob/master/Robust.Shared/CVars.cs). It should be pretty easy to read.

## Ways of specifying CVars

Expand Down
Loading