diff --git a/source/behavior/entities/1.16.0/components/minecraft.interact.json b/source/behavior/entities/1.16.0/components/minecraft.interact.json index d0b2c34f..7223aa0e 100644 --- a/source/behavior/entities/1.16.0/components/minecraft.interact.json +++ b/source/behavior/entities/1.16.0/components/minecraft.interact.json @@ -11,7 +11,16 @@ "add_items": { "type": "object", "description": "Loot table with items to add to the player's inventory upon successful interaction.", - "title": "Add Items" + "title": "Add Items", + "additionalProperties": false, + "properties": { + "table": { + "type": "string", + "$ref": "../../../../general/loot_table/identifier.json", + "description": "File path, relative to the Behavior Pack's path, to the loot table file.", + "title": "Table" + } + } }, "cooldown": { "type": "number", @@ -66,6 +75,7 @@ "type": "object", "description": "Loot table with items to drop on the ground upon successful interaction.", "title": "Spawn Items", + "additionalProperties": false, "properties": { "table": { "type": "string", diff --git a/source/behavior/entities/1.8.0/components/minecraft.interact.json b/source/behavior/entities/1.8.0/components/minecraft.interact.json index f1a449c5..853d0edc 100644 --- a/source/behavior/entities/1.8.0/components/minecraft.interact.json +++ b/source/behavior/entities/1.8.0/components/minecraft.interact.json @@ -3,6 +3,7 @@ "description": "Defines interactions with this entity.", "title": "Interact 1.8.0", "additionalProperties": false, + "type": "object", "definitions": { "interact_object": { "type": "object",