Skip to content

Commit 16cf289

Browse files
committed
kjs-eio: fix typo and tag in vat reagents event
1 parent 5a62868 commit 16cf289

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

wikis/kubejs-enderio/docs/event/vatreagents.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Keep in mind that server events have to be located inside the `kubejs/server_scr
1010
EnderIO supports data-driven Vat Reagents by default. This event adds convenience methods to modify entries via KubeJS.
1111
Vat Reagents are used in the Vat to add a modifier value to the processing of items. The modifier affects the output quantity of the processed item.
1212

13-
A [Vat recipe](../machine/vat.md) only accepts item tag as inputs. A Vat Reagent is defined by specifying an item within this input tag and assigning
13+
A [Vat recipe](../machine/vat.md) only accepts item tags as inputs. A Vat Reagent is defined by specifying an item within this input tag and assigning
1414
a modifier value to it. You can also assign a modifier to the whole input tag. If the reagent item is not part of the input tag, the modifier will
1515
not be applied. This system is a bit tricky to understand at first, but it allows defining different modifier values for the same item depending on the
1616
recipe input tag.
@@ -62,7 +62,7 @@ EnderIOEvents.vatReagents(event => {
6262
event.add("iron_ingot", "c:ingots", 3)
6363

6464
// this is also possible to cover all kinds of iron ingots
65-
event.add("#c:iron_ingots", "c:ingots", 3)
65+
event.add("#c:ingots/iron", "c:ingots", 3)
6666
})
6767
```
6868

0 commit comments

Comments
 (0)