Merge pull request #51 from JArmstrongArt/print-doc-update

updated the introductory lua doc to mention the --console launch parameter
This commit is contained in:
Agent X 2024-01-08 21:01:44 -05:00 committed by GitHub
commit ed026883c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ Save file locations:
<br />
## Tips
- When developing Lua mods, run the game from a console. Lua errors and logs will appear there.
- When developing Lua mods, run the game from a console. Lua errors and logs will appear there, but only if the game is launched with the `--console` launch parameter.
- You can use the `print()` command when debugging. Your logs will show up in the console.
- You can create a folder within the mods folder containing multiple lua scripts as long as one script is called `main.lua`. Dynos actors can be placed inside this mod folder under `<your mod folder>/actors/`.
<br />