diff --git a/README.md b/README.md index 124da88..90708f0 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ In the following steps, we'll be using [this datapack](https://github.com/eggohi 1. Create a .json file in the data/origins-limiter/advancements/can_pick folder of your datapack. For consistency, I would suggest naming the .json file after the origin that you want to limit.
-(In this example, we'll be naming it after the example origin. The namespace and ID of the example origin being example:test_origin): +(In this example, we'll be creating a folder with its name being the namespace of the origin. We will also be naming the file after the ID of the origin. The namespace and ID of the example origin being example:test_origin):
`data/origins-limiter/advancements/can_pick/example/test_origin.json` @@ -106,7 +106,7 @@ execute if score example:test_origin o-l.cur >= example:test_origin o-l.max run
-4. Create an origin.json file inside the data/origins-limiter/origin_layers/origins folder of your datapack. Inside the origins array field of the origin.json file, you would use Origins' entity condition types to check if the player has the origin that we want to limit, and the advancement that we made in step 1. +4. Create a confirm.json file inside the data/origins-limiter/origin_layers/origins/origin folder of your datapack. Inside the origins array field of the origin.json file, you would use Origins' entity condition types to check if the player has the origin that we want to limit, and the advancement that we made in step 1.
(In this example, we'll be checking if the player has the example:test_origin origin and the origins-limiter:can_pick/example/test_origin advancement):
@@ -167,6 +167,7 @@ In order to ensure that your datapack will load after the datapack librar (e.g: in `data/example/functions/load.mcfunction`, `example:load` will be the full namespace, path and ID of the function.)
+
### Hard-dependency