Skip to content

Commit 3fada0d

Browse files
authored
fix: effects code link (#12)
1 parent 2cb608c commit 3fada0d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/app/v5/dev/scripts/page.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ exports.run = run;
160160
```
161161

162162
#### Building Effect Objects
163-
Each effect object requires a `type` that tells Firebot what kind of effect the object is. You can see the list of all effect types [here](https://github.com/crowbartools/Firebot/tree/master/backend/effects/builtin).
163+
Each effect object requires a `type` that tells Firebot what kind of effect the object is. You can see the list of all effect types [here](https://github.com/crowbartools/Firebot/tree/master/src/backend/effects/builtin).
164164

165165
The rest of the effect object depends on the type of effect. The best way to know what an effect object should look like for a particular effect is to create the effect manually on a command and then view the JSON file for your saved commands.
166166

@@ -212,4 +212,4 @@ And then to output information to your console you can use these:
212212
logger.debug("Outputs a DEBUG tagged message for the dev tools console!");
213213
logger.info("Outputs an INFO tagged message for the dev tools console!");
214214
logger.error("Outputs an ERROR tagged message for the dev tools console!");
215-
```
215+
```

0 commit comments

Comments
 (0)