summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorLéo <142264317+leogianfagna@users.noreply.github.com>2024-03-08 14:14:08 -0300
committerLeonardo Bishop <13875753+LMBishop@users.noreply.github.com>2024-03-09 16:39:19 +0000
commita5f5df1fe10a237aa0c3e4cbef5e71482e5d9a8b (patch)
tree48cddbb21e22a3ff2262a56639fd1c03fe5d685c /docs
parent4c8f2773b19896ac88b3815c825cfd9771ea044b (diff)
Added lacking information to smithing-(task-type).md
New commit changed the smithing type quest and now is required to specify a mode. Not specifying a mode will break the quest since is a required field. The mode options was not specified, not even in the commit.
Diffstat (limited to 'docs')
-rw-r--r--docs/task-types/smithing-(task-type).md2
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/task-types/smithing-(task-type).md b/docs/task-types/smithing-(task-type).md
index 70019f55..d5f43177 100644
--- a/docs/task-types/smithing-(task-type).md
+++ b/docs/task-types/smithing-(task-type).md
@@ -20,6 +20,7 @@ Smith a certain number of items using a smithing table.
|---------------|--------------------------------------------------------|------------------------|----------|---------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| `amount` | The number of items to smith. | Integer | Yes | \- | \- |
| `item` | The specific item to smith. | Material, or ItemStack | No | \- | Accepts standard [item definition](../configuration/defining-items). Please see [this list](https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html) (1.13+) or [this list](https://helpch.at/docs/1.12.2/org/bukkit/Material.html) (1.8-1.12) for material names. If this is not specified, any item will count. |
+| `mode` | The specific mode of smithing. | String | Yes | \- | One of: `transform`, `trim`. |
| `worlds` | Worlds which should count towards the progress. | List of world names | No | \- | \- |
| `exact-match` | Whether the item should exactly match what is defined. | Boolean | No | true | \- |
@@ -31,6 +32,7 @@ Smith 10 items:
smithing:
type: "smithing"
amount: 10 # amount to smith
+ mode: "transform" # mode of smithing
worlds: # (OPTIONAL) restrict to certain worlds
- "world"
```