Skip to content

Commit

Permalink
Sync itemDrop object types in blockLoot_schema and entityLoot_schema (#…
Browse files Browse the repository at this point in the history
…753)

* Sync itemDrop object types in blockLoot_schema and entityLoot_schema

* fix
  • Loading branch information
extremeheat committed Aug 13, 2023
1 parent cb9db84 commit 9fc22ee
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion schemas/blockLoot_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"type": "array",
"uniqueItems": true,
"items": {
"title": "itemDrop",
"title": "blockItemDrop",
"type": "object",
"properties": {
"item": {
Expand Down
7 changes: 5 additions & 2 deletions schemas/entityLoot_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"type": "array",
"uniqueItems": true,
"items": {
"title": "itemDrop",
"title": "entityItemDrop",
"type": "object",
"properties": {
"item": {
Expand All @@ -35,7 +35,10 @@
},
"stackSizeRange": {
"description": "The min/max of number of items in this item drop stack",
"type": "array"
"type": "array",
"items": {
"type": ["number", "null"]
}
},
"playerKill": {
"description": "If a player killer is required",
Expand Down

0 comments on commit 9fc22ee

Please sign in to comment.