aboutsummaryrefslogtreecommitdiff
path: root/docs/modding
diff options
context:
space:
mode:
authorBarichello <artur@barichello.me>2022-01-11 09:34:24 -0300
committerBarichello <artur@barichello.me>2022-01-11 09:34:24 -0300
commitabbbb0f911a3d53fc3c8f6a9a2407f097815c9eb (patch)
tree2b45b11acb94c7286f70418093ffbcd926d79798 /docs/modding
parent7d9eee179c16c443337c964deff364f453c032d4 (diff)
downloadNorthstarWiki-abbbb0f911a3d53fc3c8f6a9a2407f097815c9eb.tar.gz
NorthstarWiki-abbbb0f911a3d53fc3c8f6a9a2407f097815c9eb.zip
Import image folder from main repo
Diffstat (limited to 'docs/modding')
-rw-r--r--docs/modding/getting-started.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/modding/getting-started.md b/docs/modding/getting-started.md
index 7ea7ef2..615c2af 100644
--- a/docs/modding/getting-started.md
+++ b/docs/modding/getting-started.md
@@ -43,11 +43,11 @@ Inside the `mod` folder, existing files found in the engine's virtual file syste
```json
"Scripts": [
{
- "Path": "path/to/my.nut",
+ "Path": "path/to/file.nut",
"RunOn": "( CLIENT || SERVER ) && MP"
},
{
- "Path": "path/to/my_second.nut",
+ "Path": "path/to/another_file.nut",
"RunOn": "( CLIENT || SERVER ) && MP",
"ClientCallback": {
"Before": "ClientPreMapspawnThing",