Skip to content

Commit

Permalink
Update mapping.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Moony authored Nov 19, 2023
1 parent e943eb5 commit 5e72710
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/en/space-station-14/mapping.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,14 @@ To test the map:
## With Development Environment
A [development environment](../general-development/setup/setting-up-a-development-environment.md) and [Git installation](../general-development/setup/git-for-the-ss14-developer.md) are strongly recommended, so that you can keep your local mapping server up to date and submit [pull requests](../general-development/codebase-info/pull-request-guidelines.md).

### Release Build
If you are using a development enviroment instead of just hosting a local server, make sure to use RELEASE instead of DEBUG mode. This is because DEBUG adds artificial lag (making mapping unpleasant) and crashes more (having more assertions enabled).
### Tools Build
If you are using a development enviroment instead of just hosting a local server, make sure to use Tools instead of Debug/DebugOpt mode. This is because Debug adds artificial lag (making mapping unpleasant) and crashes more (having more assertions enabled).
Additionally be careful to not use Release, which disables development environment tooling and configuration and causes the game to act like a standard server instead of a development environment.

If you are launching via a console, you can just use:
```
dotnet run --project Content.Server --configuration RELEASE
dotnet run --project Content.Client --configuration RELEASE
dotnet run --project Content.Server --configuration Tools
dotnet run --project Content.Client --configuration Tools
```

If you are using an IDE, there will be some other way of setting the configuration. For example, in VS there is simply a dropdown menu:
Expand Down

0 comments on commit 5e72710

Please sign in to comment.