diff options
Diffstat (limited to 'docs/modding/getting-started.md')
-rw-r--r-- | docs/modding/getting-started.md | 4 |
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", |